17 lines
405 B
XML
Executable file
17 lines
405 B
XML
Executable file
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
<EmbeddedResource Include="**\*.resx" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|