30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<Configurations>Debug;Release;ReleaseWithDonut</Configurations>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>..\bin\Debug\</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>..\bin\Release\</OutputPath>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseWithDonut|AnyCPU'">
|
|
<OutputPath>..\bin\Release\</OutputPath>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
|
|
<PackageReference Include="System.Drawing.Common" Version="9.0.7" />
|
|
<PackageReference Include="System.Security.Cryptography.X509Certificates" Version="4.3.2" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Pulsar.Common\Pulsar.Common.csproj" />
|
|
</ItemGroup>
|
|
</Project> |