-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (29 loc) · 1.63 KB
/
Directory.Build.props
File metadata and controls
34 lines (29 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Product>Unity Mod Studio</Product>
<Authors>DarkDaskin</Authors>
<Company>Dark Daskin</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/DarkDaskin/UnityModStudio.git</RepositoryUrl>
<PackageIcon>UnityModStudio-32.png</PackageIcon>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)UnityModStudio.snk</AssemblyOriginatorKeyFile>
<PublicKey>0024000004800000940000000602000000240000525341310004000001000100a5a5a4f45312b057695513f15b12dc1760a4555960e732c7f8f9584854ede100be8bd0b48079de8a764504e1e91f011623e0639fbd1d2d5ab56ab628b06e1b57b0b7e97bb0749226ee6ae2188a8c457bb552cbcb53d322c19d5874d5cf030d14c7d66e3131ce1cfe7833de2fee9d16c1360de69b22362abf41ab4dfe44e2b5cb</PublicKey>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="3.7.115" PrivateAssets="all" />
<PackageReference Include="StrongNamer" Version="0.2.5" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)UnityModStudio-32.png" Pack="true" PackagePath="\" Visible="false" Condition="'$(IsPackable)' == 'true'" />
</ItemGroup>
<Target Name="AdjustVersion" AfterTargets="GetBuildVersion">
<PropertyGroup>
<!-- Must correspond to one set in the templates' WizardExtension. -->
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</PropertyGroup>
</Target>
</Project>