-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVRChat.API.Client.csproj
More file actions
56 lines (49 loc) · 2.07 KB
/
Copy pathVRChat.API.Client.csproj
File metadata and controls
56 lines (49 loc) · 2.07 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
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<SignAssembly>False</SignAssembly>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>Fluent interface API around VRChat.API, allowing for fluent usage of the library in enterprise-grade environments.</Description>
<Copyright>(c) binn</Copyright>
<PackageProjectUrl>https://github.com/binn/VRChat.API.Client</PackageProjectUrl>
<RepositoryUrl>https://github.com/binn/VRChat.API.Client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>vrchat,vrcapi,microsoft.extensions.hosting,aspnetcore,servicecollection,vrc-api,vrc</PackageTags>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisLevel>latest</AnalysisLevel>
<VersionPrefix>1.1.1</VersionPrefix>
<Authors>binn</Authors>
<Company>Kibii LLC</Company>
<PackageIcon>vrc_cat.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>First release</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<ApplicationIcon>vrc_cat.ico</ApplicationIcon>
<AssemblyVersion></AssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<FileAlignment>1024</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<FileAlignment>1024</FileAlignment>
</PropertyGroup>
<ItemGroup>
<Content Include="vrc_cat.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\vrc_cat.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="VRChat.API" Version="1.6.4-rc1" />
</ItemGroup>
</Project>