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

@@ -7,10 +7,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C9C2AC53-A60
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Twain.Web", "src\Twain.Web\Twain.Web.csproj", "{9D30C377-C660-416B-A27A-53D2189BFF24}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Twain.Web", "src\Twain.Web\Twain.Web.csproj", "{9D30C377-C660-416B-A27A-53D2189BFF24}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{58AC7B73-1ED6-40EA-8C1D-3225C3D1975A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Build", "tools\Build\Build.csproj", "{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
@@ -21,17 +17,12 @@ Global
{9D30C377-C660-416B-A27A-53D2189BFF24}.Debug|Any CPU.Build.0 = Debug|Any CPU {9D30C377-C660-416B-A27A-53D2189BFF24}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9D30C377-C660-416B-A27A-53D2189BFF24}.Release|Any CPU.ActiveCfg = Release|Any CPU {9D30C377-C660-416B-A27A-53D2189BFF24}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9D30C377-C660-416B-A27A-53D2189BFF24}.Release|Any CPU.Build.0 = Release|Any CPU {9D30C377-C660-416B-A27A-53D2189BFF24}.Release|Any CPU.Build.0 = Release|Any CPU
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
EndGlobalSection EndGlobalSection
GlobalSection(NestedProjects) = preSolution GlobalSection(NestedProjects) = preSolution
{9D30C377-C660-416B-A27A-53D2189BFF24} = {C9C2AC53-A609-44E8-BFAE-F10AA0E4CE24} {9D30C377-C660-416B-A27A-53D2189BFF24} = {C9C2AC53-A609-44E8-BFAE-F10AA0E4CE24}
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF} = {58AC7B73-1ED6-40EA-8C1D-3225C3D1975A}
EndGlobalSection EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0F7F9D4C-DF95-43AF-9E9A-DA09B5EE03C7} SolutionGuid = {0F7F9D4C-DF95-43AF-9E9A-DA09B5EE03C7}

View File

@@ -5,6 +5,7 @@
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel> <AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<IsPackable>true</IsPackable>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

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

View File

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