-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuget.props
More file actions
35 lines (31 loc) · 1.86 KB
/
Nuget.props
File metadata and controls
35 lines (31 loc) · 1.86 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
<Project>
<!-- Nuget configuration -->
<PropertyGroup>
<RepositoryType>git</RepositoryType>
<Title>Discord Social SDK Wrapper</Title>
<Authors>dartasen</Authors>
<Copyright>Copyright © Discord 2025</Copyright>
<Description>C# Bindings for new Discord Social Sdk, that replaces Discord Game Sdk</Description>
<PackageTags>csharp;discord;sdk;discord sdk;discord social sdk;social sdk;unity discord;unity;discord wrapper</PackageTags>
<PackageProjectUrl>https://github.com/dartasen/Discord.SocialSdk-CSharp</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/dartasen/Discord.SocialSdk-CSharp.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<!-- Packaged files -->
<ItemGroup>
<Content Include="$(ProjectRootDir)\logo.png" Pack="true" Visible="false" PackagePath="." />
<Content Include="$(ProjectRootDir)\README.md" Pack="true" Visible="false" PackagePath="." />
<Content Include="$(ProjectRootDir)\LICENSE" Pack="true" Visible="false" PackagePath="." />
<Content Include="$(ProjectRootDir)\lib\win-x64\*" Pack="true" Visible="false" CopyToOutputDirectory="PreserveNewest" PackagePath=".\runtimes\win-x64\native" />
<Content Include="$(ProjectRootDir)\lib\linux-x64\*" Pack="true" Visible="false" CopyToOutputDirectory="PreserveNewest" PackagePath=".\runtimes\linux-x64\native" />
<Content Include="$(ProjectRootDir)\lib\osx\*" Pack="true" Visible="false" CopyToOutputDirectory="PreserveNewest" PackagePath=".\runtimes\osx\native" />
</ItemGroup>
</Project>