roadie/Inspector/Inspector.csproj

34 lines
1,000 B
XML
Raw Normal View History

2019-07-07 03:16:33 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2019-02-16 21:08:20 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
2019-09-05 02:04:20 +00:00
<Platforms>AnyCPU;x64</Platforms>
2019-02-16 21:08:20 +00:00
</PropertyGroup>
<ItemGroup>
<None Remove="appsettings.json" />
2019-06-23 15:45:45 +00:00
<None Remove="PreInspectScript.ps1" />
2019-02-16 21:08:20 +00:00
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
2019-06-23 15:45:45 +00:00
<Content Include="PreInspectScript.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2019-02-16 21:08:20 +00:00
</ItemGroup>
<ItemGroup>
2019-11-17 00:08:44 +00:00
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.4.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.0.0" />
2019-02-16 21:08:20 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Roadie.Api.Library\Roadie.Library.csproj" />
<ProjectReference Include="..\Roadie.Api.Services\Roadie.Api.Services.csproj" />
</ItemGroup>
</Project>