mirror of
https://github.com/ApfelTeeSaft/Cove2Discord.git
synced 2026-08-26 19:23:32 +00:00
26 lines
684 B
XML
26 lines
684 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BuildProjectReferences>false</BuildProjectReferences>
|
|
<OutputType>Library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="plugin.cfg"></EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Cove">
|
|
<ExcludeAssets></ExcludeAssets>
|
|
<CopyLocalSatelliteAssemblies>False</CopyLocalSatelliteAssemblies>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project> |