Remove build project from solution

This commit is contained in:
2023-02-25 13:36:05 -06:00
parent 31c2fa5a4f
commit 19c9272506
4 changed files with 4 additions and 13 deletions

View File

@@ -5,6 +5,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>

View File

@@ -5,8 +5,6 @@ internal static class Build
{
public static int Main(string[] args) => BuildRunner.Execute(args, build =>
{
build.Target("build")
.Describe("Builds the solution")
.Does(() => RunDotNet("build", "-c", "Release", "--verbosity", "normal"));
build.AddDotNetTargets();
});
}
}