-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathTRRandomizerCore.csproj
37 lines (37 loc) · 1.34 KB
/
TRRandomizerCore.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<WarningLevel>4</WarningLevel>
<Copyright>Copyright © Tomb Raider Community 2023</Copyright>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="RectanglePacker, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\Deps\RectanglePacker.dll</HintPath>
</Reference>
<Reference Include="TRGE.Coord">
<HintPath>..\Deps\TRGE.Coord.dll</HintPath>
</Reference>
<Reference Include="TRGE.Core">
<HintPath>..\Deps\TRGE.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TRDataControl\TRDataControl.csproj" />
<ProjectReference Include="..\TRImageControl\TRImageControl.csproj" />
<ProjectReference Include="..\TRLevelControl\TRLevelControl.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup>
<NoWarn>IDE0130</NoWarn>
</PropertyGroup>
</Project>