mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
28 lines
788 B
XML
28 lines
788 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="appsettings.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="appsettings.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.2" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Roadie.Api.Library\Roadie.Library.csproj" />
|
|
<ProjectReference Include="..\Roadie.Api.Services\Roadie.Api.Services.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|