14 lines
323 B
XML
14 lines
323 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<OutputType>exe</OutputType>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Dependency\Dependency.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|