This repository has been archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sisbase.csproj
46 lines (41 loc) · 1.84 KB
/
sisbase.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>sisbase</RootNamespace>
<ApplicationIcon />
<StartupObject />
<Authors>roridev1,wffirilat</Authors>
<Company>siscode</Company>
<Description>A D#+ Discord Bot Base</Description>
<Copyright>© siscode , All Rights Registered, 2020</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
<VersionPrefix>2.0.0.0</VersionPrefix>
<RepositoryUrl>https://github.com/siscodeorg/sisbase</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/siscodeorg/sisbase</PackageProjectUrl>
<PackageIcon>sisbase.png</PackageIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>sisbase.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="sisbase.Test\**" />
<EmbeddedResource Remove="sisbase.Test\**" />
<None Remove="sisbase.Test\**" />
<None Include="assets\sisbase.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.0.0-nightly-00697" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.0.0-nightly-00697" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.0.0-nightly-00697" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.13" />
</ItemGroup>
</Project>