14 lines
374 B
XML
14 lines
374 B
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard1.5</TargetFramework>
|
|
<OutputType>library</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
<EmbeddedResource Include="**\*.resx" />
|
|
<PackageReference Include="NETStandard.Library" Version="1.6.0" />
|
|
</ItemGroup>
|
|
|
|
</Project> |