-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDystopiaPolyScript.csproj
More file actions
38 lines (35 loc) · 1.22 KB
/
DystopiaPolyScript.csproj
File metadata and controls
38 lines (35 loc) · 1.22 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RestoreAdditionalProjectSources>
https://api.nuget.org/v3/index.json;
https://nuget.bepinex.dev/v3/index.json;
https://nuget.samboy.dev/v3/index.json;
https://polymod.dev/nuget/v3/index.json;
</RestoreAdditionalProjectSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PolyMod" Version="*" />
</ItemGroup>
<ItemGroup>
<Reference Include="PolytopiaBackendBase">
<HintPath>PolytopiaBackendBase.dll</HintPath>
</Reference>
<Reference Include="GameLogicAssembly">
<HintPath>GameLogicAssembly.dll</HintPath>
</Reference>
<Reference Include="PolytopiaAssembly">
<HintPath>PolytopiaAssembly.dll</HintPath>
</Reference>
<Reference Include="Il2Cppmscorlib">
<HintPath>Il2Cppmscorlib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="manifest.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>