22 lines
705 B
XML
22 lines
705 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Dtos\EmpDto.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\YB.DeviceV2.Domain.Shared\YB.DeviceV2.Domain.Shared.csproj" />
|
|
<ProjectReference Include="..\YB.DeviceV2.Util\YB.DeviceV2.Util.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|