2022-04-21 19:47:09 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-11-29 17:30:07 +00:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2023-03-31 17:30:30 +01:00
|
|
|
<LangVersion>11.0</LangVersion>
|
2022-04-21 19:47:09 +01:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2023-04-02 01:07:35 +01:00
|
|
|
<ExcludeFromCodeCoverage>true</ExcludeFromCodeCoverage>
|
2023-04-02 01:11:14 +01:00
|
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
2022-04-21 19:47:09 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\X10D\X10D.csproj"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|