22 lines
633 B
XML
22 lines
633 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Configurations>Debug;Release;Release-Server</Configurations>
|
|
<Platforms>AnyCPU;linux-arm</Platforms>
|
|
</PropertyGroup>
|
|
<Import Project="../InnovEnergy.Lib.props" />
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DecimalMath.DecimalEx" Version="1.0.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Utils/Utils.csproj" />
|
|
<ProjectReference Include="../Time/Time.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="./Generator/generate.sh" />
|
|
</Target>
|
|
|
|
</Project>
|