mirror of https://github.com/quasar/Quasar.git
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net452</TargetFrameworks>
|
|
<OutputType>Library</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<OutputPath>..\bin\Debug\</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DocumentationFile></DocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>none</DebugType>
|
|
<OutputPath>..\bin\Release\</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.Management" />
|
|
<Reference Include="System.ServiceModel" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="protobuf-net">
|
|
<Version>2.4.8</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
|
<PackageReference Include="Microsoft.Win32.Registry" />
|
|
<PackageReference Include="System.Drawing.Common" />
|
|
<PackageReference Include="System.Management" />
|
|
</ItemGroup>
|
|
</Project> |