-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathStereoKitInk.csproj
More file actions
32 lines (27 loc) · 959 Bytes
/
StereoKitInk.csproj
File metadata and controls
32 lines (27 loc) · 959 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<OutputType>Exe</OutputType>
<ApplicationIcon>Platforms/Net/StereoKitInk.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StereoKit" Version="0.3.10" />
</ItemGroup>
<ItemGroup>
<!--Don't compile Android code in this project, but do show it in the
explorer window.-->
<Compile Remove="**\*.Android.cs" />
<Compile Remove="Platforms\Android\**" />
<None Include="**\*.Android.cs" />
<None Include="Platforms\Android\**" />
<!--Don't compile UWP code in this project, but do show it in the
explorer window.-->
<Compile Remove="**\*.UWP.cs" />
<Compile Remove="Platforms\UWP\**" />
<None Include="**\*.UWP.cs" />
<None Include="Platforms\UWP\**" />
<Compile Remove="Projects\**" />
<EmbeddedResource Remove="Projects\**" />
<None Remove="Projects\**" />
</ItemGroup>
</Project>