-
Notifications
You must be signed in to change notification settings - Fork 8
/
GodotRx.csproj
27 lines (27 loc) · 1.11 KB
/
GodotRx.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
<Project Sdk="Godot.NET.Sdk/3.2.3">
<PropertyGroup>
<ProjectGuid>{77AB9809-ED73-4094-AA83-C4A4939ABF9C}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>GodotRx</RootNamespace>
<AssemblyName>GodotRx</AssemblyName>
<GodotProjectGeneratorVersion>1.0.0.0</GodotProjectGeneratorVersion>
<TargetFramework>net472</TargetFramework>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<!--The following properties were overriden during migration to prevent errors.
Enabling them may require other manual changes to the project and its files.-->
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Deterministic>false</Deterministic>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Reactive" Version="4.4.1" />
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="addons\**\*.cs" />
<Compile Include="tests\**\*.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
</Project>