-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlugin API.csproj
More file actions
59 lines (49 loc) · 2.26 KB
/
Copy pathPlugin API.csproj
File metadata and controls
59 lines (49 loc) · 2.26 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
57
58
59
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<RootNamespace>Nucleus</RootNamespace>
<AssemblyName>Nucleus.API</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Library</OutputType>
<!-- Disable PDBs -->
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
<!-- No www-root -->
<StaticWebAssetsEnabled>false</StaticWebAssetsEnabled>
<!-- NuGet -->
<IsPackable>true</IsPackable>
<PackageId>Nucleus.API</PackageId>
<Version>2022.9.18-prerelease</Version>
<PublishRelease>true</PublishRelease>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<!-- Package Information -->
<ProductName>NucleusBot Companion</ProductName>
<Authors>Greg Stefanowich</Authors>
<Company>NucleusBot</Company>
<Copyright>NucleusBot © | All rights reserved.</Copyright>
<Description>A Plugin API for NucleusBot Companion</Description>
<PackageProjectUrl>https://www.nucleus.bot/companion</PackageProjectUrl>
<PackageType>Dependency</PackageType>
<RepositoryUrl>https://github.com/nucleus-bot/plugin-api</RepositoryUrl>
<PackageTags>nucleusbot</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<!-- File references -->
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<!-- Dependencies -->
<PackageReference Include="TheElm.Text.Json" Version="1.0.0" />
<!-- Blazor/Razor -->
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0">
<Private>false</Private>
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<SupportedPlatform Include="browser" />
<!-- NuGet -->
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
</Project>