21 lines
511 B
XML
21 lines
511 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<Import Project="../InnovEnergy.lib.props" />
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Library</OutputType>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
||
|
<DebugType>full</DebugType>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<RootNamespace>InnovEnergy.SysTools</RootNamespace>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="System.Reactive.Linq" Version="5.0.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|