-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathksp2-papi.csproj
31 lines (31 loc) · 1.26 KB
/
ksp2-papi.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>ksp2_papi</RootNamespace>
<Version>0.1.0.0</Version>
<EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>
<PropertyGroup>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>$(DefineConstants);INCLUDE_DEBUG_GUI</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.BaseLib" Version="5.4.21" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.1.0" />
<PackageReference Include="HarmonyX" Version="2.10.2" />
<PackageReference Include="KerbalSpaceProgram2.GameLibs" Version="0.2.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="UnityEngine.Modules" Version="2022.3.5" />
<PackageReference Include="Unity.InputSystem" Version="1.5.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="./main/**/*.cs" />
<Compile Include="./ksp2-papi-assets\Assets\Scripts/*.cs" />
<Compile Remove="./ksp2-papi-assets/Assets/Scripts/ShaderTesting.cs" />
<None Include="./*" />
<None Include="./.github/**/*" />
</ItemGroup>
</Project>