17 lines
374 B
XML
17 lines
374 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<LangVersion>9</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Example.Shared\Example.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|