2023-02-23 06:55:15 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-05-11 08:20:47 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<Configurations>Debug;Release;Release-Server</Configurations>
|
|
|
|
<Platforms>AnyCPU;linux-arm</Platforms>
|
|
|
|
</PropertyGroup>
|
2023-02-25 15:04:41 +00:00
|
|
|
<Import Project="../InnovEnergy.Lib.props" />
|
2023-02-23 06:55:15 +00:00
|
|
|
|
2023-02-26 09:38:28 +00:00
|
|
|
<ItemGroup>
|
2023-05-24 10:04:01 +00:00
|
|
|
<ProjectReference Include="../Utils/Utils.csproj" />
|
|
|
|
<ProjectReference Include="../Time/Time.csproj" />
|
|
|
|
<ProjectReference Include="../SrcGen/SrcGen.csproj" />
|
2023-02-26 09:38:28 +00:00
|
|
|
</ItemGroup>
|
2023-05-24 10:04:01 +00:00
|
|
|
|
2023-02-26 14:39:55 +00:00
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2023-05-24 10:04:01 +00:00
|
|
|
<MSBuild Projects="../SrcGen/SrcGen.csproj" />
|
|
|
|
<Exec Command="../SrcGen/bin/$(Configuration)/$(TargetFramework)/SrcGen $(MSBuildProjectFullPath)" />
|
2023-02-26 14:39:55 +00:00
|
|
|
</Target>
|
|
|
|
|
2023-02-23 06:55:15 +00:00
|
|
|
</Project>
|