-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSunFix.csproj
25 lines (21 loc) · 853 Bytes
/
SunFix.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<!--<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy $(ProjectDir)README.md $(ProjectDir)package
copy $(OutDir)$(AssemblyName).dll $(ProjectDir)\package\RotatingSun\plugins" />
</Target>-->
<ItemGroup>
<PackageReference Include="Lib.Harmony" Version="2.3.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="Managed\Timberborn*.dll" />
<Reference Include="Managed\UnityEngine*.dll" />
<Reference Include="Managed\Bindito*.dll" />
<Reference Include="TimberAPI\core\*.dll" />
<Reference Include="Scripts\*dll" />
</ItemGroup>
</Project>