This repository has been archived on 2022-03-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
minesweeper/MineSweeper.csproj
T
2022-03-03 17:58:59 +03:00

16 lines
533 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RepositoryUrl>https://github.com/H1K0/MineSweeper.git</RepositoryUrl>
<Copyright>Masahiko AMANO a.k.a. H1K0</Copyright>
<Authors>H1K0</Authors>
<StartupObject>MineSweeper.Program</StartupObject>
<PackageProjectUrl>https://github.com/H1K0/MineSweeper</PackageProjectUrl>
</PropertyGroup>
</Project>