mirror of
				https://github.com/nsnail/NetAdmin.git
				synced 2025-10-31 03:19:26 +08:00 
			
		
		
		
	build: 📦 精简根目录构建文件 (#67)
This commit is contained in:
		| @@ -3,7 +3,7 @@ | ||||
|     <PropertyGroup> | ||||
|         <SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir> | ||||
|     </PropertyGroup> | ||||
|     <Import Project="$(SolutionDir)/minver.targets" /> | ||||
|     <Import Project="$(SolutionDir)/build/minver.targets" /> | ||||
|     <PropertyGroup> | ||||
|         <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||||
|         <Authors>nsnail</Authors> | ||||
|   | ||||
							
								
								
									
										15
									
								
								NetAdmin.sln
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								NetAdmin.sln
									
									
									
									
									
								
							| @@ -15,21 +15,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "meta", "meta", "{5198A03D-0 | ||||
| 		.gitignore = .gitignore | ||||
| 		.gitmodules = .gitmodules | ||||
| 		CHANGELOG.md = CHANGELOG.md | ||||
| 		code.quality.props = code.quality.props | ||||
| 		copy.pkg.xml.comment.files.targets = copy.pkg.xml.comment.files.targets | ||||
| 		Directory.Build.props = Directory.Build.props | ||||
| 		Dockerfile = Dockerfile | ||||
| 		dotnet-tools.json = dotnet-tools.json | ||||
| 		global.json = global.json | ||||
| 		LICENSE = LICENSE | ||||
| 		minver.targets = minver.targets | ||||
| 		NetAdmin.sln.DotSettings = NetAdmin.sln.DotSettings | ||||
| 		nuget.config = nuget.config | ||||
| 		package.json = package.json | ||||
| 		prebuild.targets = prebuild.targets | ||||
| 		README.md = README.md | ||||
| 		stylecop.analyzers.ruleset = stylecop.analyzers.ruleset | ||||
| 		StyleCop.json = StyleCop.json | ||||
| 	EndProjectSection | ||||
| EndProject | ||||
| Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{BB0B25C9-0901-4923-913F-00F9A6B352A5}" | ||||
| @@ -60,6 +54,15 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{ | ||||
| 		ci.yml = .github/workflows/ci.yml | ||||
| 	EndProjectSection | ||||
| EndProject | ||||
| Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{8E4C93BA-9493-4892-80C4-5E174C504829}" | ||||
| 	ProjectSection(SolutionItems) = preProject | ||||
| 		code.quality.props = build/code.quality.props | ||||
| 		copy.pkg.xml.comment.files.targets = build/copy.pkg.xml.comment.files.targets | ||||
| 		minver.targets = build/minver.targets | ||||
| 		prebuild.targets = build/prebuild.targets | ||||
| 		stylecop.analyzers.ruleset = build/stylecop.analyzers.ruleset | ||||
| 	EndProjectSection | ||||
| EndProject | ||||
| Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetAdmin.Infrastructure", "src\backend\NetAdmin.Infrastructure\NetAdmin.Infrastructure.csproj", "{1E62C322-EE42-4699-A6F1-791C53EFA62D}" | ||||
| EndProject | ||||
| Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NetAdmin.BizServer.Application", "src\backend\NetAdmin.BizServer.Application\NetAdmin.BizServer.Application.csproj", "{E38B2EB4-D7A5-4777-9236-3B348919DF23}" | ||||
|   | ||||
| @@ -1,9 +0,0 @@ | ||||
| { | ||||
|   "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", | ||||
|   "settings": { | ||||
|     "indentation": { | ||||
|       "useTabs": false, | ||||
|       "indentationSize": 4 | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @@ -1,6 +1,6 @@ | ||||
| <Project> | ||||
|     <PropertyGroup> | ||||
|         <CodeAnalysisRuleSet>$(SolutionDir)/stylecop.analyzers.ruleset</CodeAnalysisRuleSet> | ||||
|         <CodeAnalysisRuleSet>$(SolutionDir)/build/stylecop.analyzers.ruleset</CodeAnalysisRuleSet> | ||||
|     </PropertyGroup> | ||||
|     <PropertyGroup> | ||||
|         <CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors> | ||||
| @@ -45,5 +45,19 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{BB0B | ||||
| """ | ||||
| ); | ||||
|  | ||||
| content = Regex.Replace( | ||||
|     content, | ||||
|     "Project\\(\"{2150E333-8FDC-42A3-9474-1A3956D46DE8}\"\\) = \"build\", \"build\", \"{8E4C93BA-9493-4892-80C4-5E174C504829}\"(?:.|\n)*?EndProject", | ||||
|     $$""" | ||||
| Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{8E4C93BA-9493-4892-80C4-5E174C504829}" | ||||
| {{'\t'}}ProjectSection(SolutionItems) = preProject | ||||
| {{string.Join('\n', | ||||
|              Directory.GetFiles(@"../build", "*") | ||||
|                       .Select(x=>$"\t\t{Path.GetFileName(x)} = build/{Path.GetFileName(x)}") | ||||
|                       )}} | ||||
| {{'\t'}}EndProject | ||||
| """ | ||||
| ); | ||||
|  | ||||
| Console.WriteLine(content); | ||||
| File.WriteAllText(slnFile, content); | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.Domain/NetAdmin.Domain.csproj"/> | ||||
|     </ItemGroup> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.SysComponent.Application/NetAdmin.SysComponent.Application.csproj"/> | ||||
|     </ItemGroup> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.SysComponent.Cache/NetAdmin.SysComponent.Cache.csproj"/> | ||||
|         <ProjectReference Include="../NetAdmin.BizServer.Application/NetAdmin.BizServer.Application.csproj"/> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk.Web"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <EmbeddedResource Include="$(SolutionDir)/assets/captcha/**" LinkBase="Assets/Captcha"/> | ||||
|     </ItemGroup> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.Application/NetAdmin.Application.csproj"/> | ||||
|     </ItemGroup> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <Content Include="$(SolutionDir)/assets/seed-data/**" LinkBase="SeedData" CopyToOutputDirectory="PreserveNewest"/> | ||||
|     </ItemGroup> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.Cache/NetAdmin.Cache.csproj"/> | ||||
|     </ItemGroup> | ||||
|   | ||||
| @@ -2,9 +2,9 @@ | ||||
|     <PropertyGroup> | ||||
|         <DefineConstants>INFRAS</DefineConstants> | ||||
|     </PropertyGroup> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/copy.pkg.xml.comment.files.targets"/> | ||||
|     <Import Project="$(SolutionDir)/prebuild.targets"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/copy.pkg.xml.comment.files.targets"/> | ||||
|     <Import Project="$(SolutionDir)/build/prebuild.targets"/> | ||||
|     <ItemGroup> | ||||
|         <PackageReference Include="FreeSql.DbContext.NS" Version="3.2.802-preview20231010-ns1"/> | ||||
|         <PackageReference Include="FreeSql.Provider.Sqlite.NS" Version="3.2.802-preview20231010-ns1"/> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk.Web"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.Host/NetAdmin.Host.csproj"/> | ||||
|         <ProjectReference Include="../NetAdmin.BizServer.Cache/NetAdmin.BizServer.Cache.csproj"/> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.Application/NetAdmin.Application.csproj"/> | ||||
|     </ItemGroup> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.Cache/NetAdmin.Cache.csproj"/> | ||||
|         <ProjectReference Include="../NetAdmin.SysComponent.Application/NetAdmin.SysComponent.Application.csproj"/> | ||||
|   | ||||
| @@ -1,5 +1,5 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|     <Import Project="$(SolutionDir)/code.quality.props"/> | ||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||
|     <ItemGroup> | ||||
|         <ProjectReference Include="../NetAdmin.Host/NetAdmin.Host.csproj"/> | ||||
|         <ProjectReference Include="../NetAdmin.SysComponent.Cache/NetAdmin.SysComponent.Cache.csproj"/> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 GitHub
						GitHub