25 lines
638 B
XML
25 lines
638 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
||
|
|
<Nullable>disable</Nullable>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Reference Include="MegaRobo.Contract">
|
||
|
|
<HintPath>..\..\..\Common\Published\NET7.0\MegaRobo.Contract.dll</HintPath>
|
||
|
|
</Reference>
|
||
|
|
<Reference Include="MegaRobo.Logger">
|
||
|
|
<HintPath>..\..\..\Common\Published\NET7.0\MegaRobo.Logger.dll</HintPath>
|
||
|
|
</Reference>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Compile Remove="JobManagerProvider.cs" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|