-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBannerlord.ModuleManager.Native.csproj
More file actions
50 lines (43 loc) · 1.99 KB
/
Bannerlord.ModuleManager.Native.csproj
File metadata and controls
50 lines (43 loc) · 1.99 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<PublishAot>true</PublishAot>
<TrimMode>full</TrimMode>
<DebugType>none</DebugType>
<NativeLib>Shared</NativeLib>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Debug'">
<DefineConstants>$(DefineConstants);TRACK_ALLOCATIONS;LOGGING;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Release'">
<DefineConstants>$(DefineConstants);TRACK_ALLOCATIONS;</DefineConstants>
<DebuggerSupport>false</DebuggerSupport>
<AutoreleasePoolSupport>false</AutoreleasePoolSupport>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<InvariantGlobalization>true</InvariantGlobalization>
<UseNativeHttpHandler>true</UseNativeHttpHandler>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<IlcFoldIdenticalMethodBodies>true</IlcFoldIdenticalMethodBodies>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Bannerlord.ModuleManager\Bannerlord.ModuleManager.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Bannerlord.ModuleManager.Native.h">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="BUTR.NativeAOT.Generator" Version="1.0.68" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
<PackageReference Include="BUTR.NativeAOT.Shared.Source" Version="1.0.69" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
<PackageReference Include="ConcurrentHashSet" Version="1.3.0" />
</ItemGroup>
</Project>