1
0
Fork 0
mirror of https://github.com/dancojocaru2000/ai-project-idastar.git synced 2025-02-22 16:39:35 +02:00
ai-project-idastar/IDAstar.csproj

17 lines
435 B
XML
Raw Permalink Normal View History

2021-12-01 20:16:53 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
2021-12-01 23:49:31 +02:00
<LangVersion>preview</LangVersion>
2021-12-01 20:16:53 +02:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
2021-12-01 20:16:53 +02:00
</PropertyGroup>
2021-12-01 23:49:31 +02:00
<ItemGroup>
<PackageReference Include="System.Runtime.Experimental" Version="6.0.0" />
</ItemGroup>
2021-12-01 20:16:53 +02:00
</Project>