21 lines
855 B
XML
21 lines
855 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
|
|
<OutputType>Library</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DebugType>none</DebugType>
|
|
<PdbPath>none</PdbPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="CringePlugins" Version="0.1.32" />
|
|
</ItemGroup>
|
|
</Project> |