16 lines
393 B
XML
16 lines
393 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\dir.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
<OutputType>exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
<Compile Include="..\..\shared\**\*.cs" />
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project> |