2021-04-02 17:28:07 +05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-12-28 16:35:31 +05:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-10-08 11:30:57 +05:00
|
|
|
<StartupObject>ConsoleApp1.Program</StartupObject>
|
2022-10-06 13:49:20 +05:00
|
|
|
<Nullable>enable</Nullable>
|
2021-04-02 17:28:07 +05:00
|
|
|
</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>
|
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
<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" />
|
2021-04-30 17:35:35 +05:00
|
|
|
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
|
|
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
2021-04-02 17:28:07 +05:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-07-28 09:47:13 +05:00
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
<ItemGroup>
|
2021-07-28 09:47:13 +05:00
|
|
|
<WCFMetadata Include="Connected Services" />
|
2021-04-02 17:28:07 +05:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-07-23 14:55:31 +05:00
|
|
|
|
2021-08-28 20:00:04 +05:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\AsbCloudApp\AsbCloudApp.csproj" />
|
|
|
|
<ProjectReference Include="..\AsbCloudDb\AsbCloudDb.csproj" />
|
|
|
|
<ProjectReference Include="..\AsbCloudInfrastructure\AsbCloudInfrastructure.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2021-04-02 17:28:07 +05:00
|
|
|
</Project>
|