16 lines
441 B
XML
16 lines
441 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\shared\*.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.DotNet.Cli.Utils" Version="1.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.0" />
|
|
</ItemGroup>
|
|
</Project> |