-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin_PSMoveService.csproj
More file actions
34 lines (31 loc) · 1.4 KB
/
Copy pathplugin_PSMoveService.csproj
File metadata and controls
34 lines (31 loc) · 1.4 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
<TargetPlatformIdentifier>Windows</TargetPlatformIdentifier>
<RootNamespace>plugin_PSMoveService</RootNamespace>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<PublishTrimmed>false</PublishTrimmed>
<Platforms>x64</Platforms>
<UseWinUI>true</UseWinUI>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../vendor/PSMS/PSMoveServiceExCAPI/PSMoveServiceExCAPI.vbproj" />
<PackageReference Include="Amethyst.Plugins.Contract" Version="1.3.0" />
<PackageReference Include="RestSharp" Version="112.1.0" />
<PackageReference Include="System.ComponentModel.Composition" Version="9.0.6" />
<PackageReference Include="System.ComponentModel.Composition.Registration" Version="9.0.6" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250606001" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.4188" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="Assets\Resources\Dependencies\" />
</ItemGroup>
</Project>