Files
ProxyGenerator/src-examples/ProxyInterfaceConsumerViaNuGet/ProxyInterfaceConsumerViaNuGet.csproj
T
Stef Heyenrath 9dd2221f23 Fix support for Nullable (language version 8) (#25)
* Only emit #nullable when nullable is supported (>= 8.0)

* x

* is not
2021-08-06 17:09:01 +02:00

14 lines
382 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>ProxyInterfaceConsumer</AssemblyName>
<RootNamespace>ProxyInterfaceConsumer</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ProxyInterfaceGenerator" Version="0.0.10" />
</ItemGroup>
</Project>