forked from vrchatapi/vrchatapi-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVRChat.API.csproj
More file actions
48 lines (45 loc) 路 2 KB
/
Copy pathVRChat.API.csproj
File metadata and controls
48 lines (45 loc) 路 2 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
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo><!-- setting GenerateAssemblyInfo to false causes this bug https://github.com/dotnet/project-system/issues/3934 -->
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>VRChat.API</AssemblyName>
<PackageId>VRChat.API</PackageId>
<OutputType>Library</OutputType>
<Authors>VRChat API Docs Community</Authors>
<Company>VRChat API Docs Community</Company>
<AssemblyTitle>VRChat API Library for .NET</AssemblyTitle>
<Description>VRChat API Library for .NET</Description>
<Copyright>Copyright 脗漏 2021 Owners of GitHub organisation "vrchatapi" and individual contributors.</Copyright>
<RootNamespace>VRChat.API</RootNamespace>
<Version>2.20.8-nightly.17</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\VRChat.API.xml</DocumentationFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/vrchatapi/vrchatapi-csharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Automated deployment</PackageReleaseNotes>
<PackageTags>vrchat,vrcapi,vrc-api,vrc</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ApplicationIcon>vrc_cat.ico</ApplicationIcon>
<Nullable>annotations</Nullable>
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JsonSubTypes" Version="2.0.1" />
<PackageReference Include="Otp.NET" Version="1.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Polly" Version="8.1.0" />
</ItemGroup>
<ItemGroup>
</ItemGroup>
<ItemGroup>
<Content Include="vrc_cat.ico" />
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="vrc_cat.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>