roadie/Inspector/Inspector.csproj

34 lines
1 KiB
XML
Raw Normal View History

2019-02-16 15:08:20 -06:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="appsettings.json" />
2019-06-23 10:45:45 -05:00
<None Remove="PreInspectScript.ps1" />
2019-02-16 15:08:20 -06:00
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
2019-06-23 10:45:45 -05:00
<Content Include="PreInspectScript.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2019-02-16 15:08:20 -06:00
</ItemGroup>
<ItemGroup>
2019-05-10 22:07:45 -05:00
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.4" />
2019-02-16 15:08:20 -06:00
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
2019-06-23 10:45:45 -05:00
<PackageReference Include="Microsoft.PowerShell.SDK" Version="6.2.1" />
2019-02-16 15:08:20 -06:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Roadie.Api.Library\Roadie.Library.csproj" />
<ProjectReference Include="..\Roadie.Api.Services\Roadie.Api.Services.csproj" />
</ItemGroup>
</Project>