-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathWhatIsThat.csproj
54 lines (48 loc) · 2.4 KB
/
WhatIsThat.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net472</TargetFramework>
<Platforms>x64</Platforms>
<CodeAnalysisRuleSet>../../Build/Sample.Psi.ruleset</CodeAnalysisRuleSet>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<StartupObject>WhatIsThat.Program</StartupObject>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<PlatformTarget>x64</PlatformTarget>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="stylecop.json" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathNet.Spatial.Signed" Version="0.6.0" />
<PackageReference Include="Microsoft.Azure.Kinect.Sensor" Version="1.4.1" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Psi.Audio.Windows" Version="0.19.100.1-beta" />
<PackageReference Include="Microsoft.Psi.AzureKinect.x64" Version="0.19.100.1-beta" />
<PackageReference Include="Microsoft.Psi.CognitiveServices.Speech" Version="0.19.100.1-beta" />
<PackageReference Include="Microsoft.Psi.CognitiveServices.Vision" Version="0.19.100.1-beta" />
<PackageReference Include="Microsoft.Psi.Imaging.Windows" Version="0.19.100.1-beta" />
<PackageReference Include="Microsoft.Psi.Runtime" Version="0.19.100.1-beta" />
<PackageReference Include="Microsoft.Psi.Speech.Windows" Version="0.19.100.1-beta" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>