-
Notifications
You must be signed in to change notification settings - Fork 0
/
nights.test.jacklescapefix.csproj
52 lines (44 loc) · 1.84 KB
/
nights.test.jacklescapefix.csproj
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
51
52
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<OutputPath>$(RELOADEDIIMODS)/nights.test.jacklescapefix</OutputPath>
<ImplicitUsings>enable</ImplicitUsings>
<!-- IL Trimming Support for Framework Dependent Apps. Unofficial.
If you set this to true, trimming will be enabled when you publish the mod.
Test trimming with: `BuildLinked.ps1` in PowerShell. -->
<ReloadedILLink>false</ReloadedILLink>
</PropertyGroup>
<ItemGroup>
<ReloadedLinkRoots Include="nights.test.jacklescapefix" />
<!-- Add assemblies to be trimmed. You might need to add their dependencies too! -->
<!-- <ReloadedLinkAssemblies Include="Reloaded.Memory" /> -->
</ItemGroup>
<Import Project="Reloaded.Trimming.targets" />
<Import Project="Reloaded.Checks.targets" />
<ItemGroup>
<None Remove="ModConfig.json" />
<None Remove="Publish.ps1" />
<None Remove="BuildLinked.ps1" />
<None Remove="Reloaded.Trimming.targets" />
<None Remove="Reloaded.Checks.targets" />
</ItemGroup>
<ItemGroup>
<Content Include="ModConfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Update="Preview.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Redirector\afs\DATMAGIC.BIN">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Reloaded.Mod.Interfaces" Version="2.4.0" ExcludeAssets="runtime" />
</ItemGroup>
</Project>