-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiscord.Addons.Linking.csproj
More file actions
36 lines (32 loc) · 1.3 KB
/
Discord.Addons.Linking.csproj
File metadata and controls
36 lines (32 loc) · 1.3 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>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>An extension for Discord.Net that adds linkable messages.</Description>
<Title>Discord.Addons.Linking</Title>
<PackageId>Discord.Addons.Linking</PackageId>
<PackageIcon>Icon.png</PackageIcon>
<PackageIconUrl>Icon.png</PackageIconUrl>
<PackageTags>discord, discord.net, discord.addons</PackageTags>
<Authors>AbnerSquared</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageLicenseExpression></PackageLicenseExpression>
<PackageProjectUrl>https://github.com/AbnerSquared/Discord.Addons.Linking</PackageProjectUrl>
<RepositoryUrl>https://github.com/AbnerSquared/Discord.Addons.Linking</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net.Core" Version="2.1.1" />
<PackageReference Include="Discord.Net.WebSocket" Version="2.1.1" />
</ItemGroup>
<ItemGroup>
<None Include="marketing\Icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>