2020-05-19 18:57:57 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-18 16:55:25 +00:00
|
|
|
|
<PropertyGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<TargetFrameworks>net452</TargetFrameworks>
|
2018-08-18 16:55:25 +00:00
|
|
|
|
<OutputType>Library</OutputType>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2018-08-18 16:55:25 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
2018-09-27 07:38:00 +00:00
|
|
|
|
<OutputPath>..\bin\Debug\</OutputPath>
|
2018-08-18 16:55:25 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<DocumentationFile></DocumentationFile>
|
2018-08-18 16:55:25 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>none</DebugType>
|
2018-09-27 07:38:00 +00:00
|
|
|
|
<OutputPath>..\bin\Release\</OutputPath>
|
2018-08-18 16:55:25 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2018-10-05 21:58:09 +00:00
|
|
|
|
<Reference Include="System.Management" />
|
2018-09-07 21:22:14 +00:00
|
|
|
|
<Reference Include="System.ServiceModel" />
|
2018-08-18 16:55:25 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<PackageReference Include="protobuf-net">
|
2023-02-11 16:49:20 +00:00
|
|
|
|
<Version>2.4.8</Version>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
</PackageReference>
|
2018-08-18 16:55:25 +00:00
|
|
|
|
</ItemGroup>
|
2020-05-19 18:57:57 +00:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
2023-02-11 16:49:20 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" />
|
|
|
|
|
<PackageReference Include="System.Drawing.Common" />
|
|
|
|
|
<PackageReference Include="System.Management" />
|
2018-08-18 16:55:25 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|