Change target framework to 4.0 for mono

This commit is contained in:
Michael B. Gale
2023-02-16 09:25:07 +00:00
parent f1adb4319a
commit 9db1366e4b
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,6 @@
namespace Test
using System;
namespace Test
{
public class Program
{

View File

@@ -2,8 +2,6 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TargetFramework>net4.0</TargetFramework>
</PropertyGroup>
</Project>