-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEasyOpenVR.csproj
More file actions
36 lines (30 loc) · 1.34 KB
/
Copy pathEasyOpenVR.csproj
File metadata and controls
36 lines (30 loc) · 1.34 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
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>14</LangVersion>
<PackageId>EasyOpenVR</PackageId>
<Authors>BOLL7708</Authors>
<Description>This is a Class Library to make it easier to talk to the OpenVR API using the official C# headers</Description>
<PackageTags>openvr steamvr openvr-api</PackageTags>
<PackageProjectUrl>https://github.com/BOLL7708/EasyOpenVR</PackageProjectUrl>
<RepositoryUrl>https://github.com/BOLL7708/EasyOpenVR</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Update="openvr_api.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="10.0.1" />
<PackageReference Include="System.Text.Json" Version="10.0.3" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>