forked from jsebold666/TazUO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
47 lines (41 loc) · 1.99 KB
/
Directory.Build.props
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
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project>
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<LangVersion>Preview</LangVersion>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
</PropertyGroup>
<PropertyGroup>
<Company>ClassicUO</Company>
<Authors>KaRaShO'</Authors>
<AssemblyVersion>0.1.11.0</AssemblyVersion>
<FileVersion>0.1.11.0</FileVersion>
<Copyright>ClassicUO</Copyright>
<PackageProjectUrl>https://www.classicuo.eu/</PackageProjectUrl>
<Description>An open source implementation of the Ultima Online Classic Client.</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(IS_DEV_BUILD)' == 'true'">
<DefineConstants>$(DefineConstants);DEV_BUILD</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.*" PrivateAssets="All" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="7.0.2" />
<Reference Include="System.IO.Compression" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EmbedResourceCSharp" Version="1.1.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>