DD.WellWorkover.Cloud/ConsoleApp1/ConsoleApp1.csproj

39 lines
1.2 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<StartupObject>ConsoleApp1.Program</StartupObject>
2022-10-06 13:49:20 +05:00
<Nullable>enable</Nullable>
</PropertyGroup>
2022-01-17 17:55:00 +05:00
<ItemGroup>
<Compile Remove="Connected Services\**" />
2022-09-09 15:29:46 +05:00
<Compile Remove="Properties\**" />
2022-01-17 17:55:00 +05:00
<EmbeddedResource Remove="Connected Services\**" />
2022-09-09 15:29:46 +05:00
<EmbeddedResource Remove="Properties\**" />
2022-01-17 17:55:00 +05:00
<None Remove="Connected Services\**" />
2022-09-09 15:29:46 +05:00
<None Remove="Properties\**" />
2022-01-17 17:55:00 +05:00
</ItemGroup>
<ItemGroup>
2022-09-09 15:29:46 +05:00
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
2022-06-01 12:18:10 +05:00
<PackageReference Include="Mapster" Version="7.3.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
2021-07-28 09:47:13 +05:00
<ItemGroup>
2021-07-28 09:47:13 +05:00
<WCFMetadata Include="Connected Services" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AsbCloudApp\AsbCloudApp.csproj" />
<ProjectReference Include="..\AsbCloudDb\AsbCloudDb.csproj" />
<ProjectReference Include="..\AsbCloudInfrastructure\AsbCloudInfrastructure.csproj" />
</ItemGroup>
</Project>