Skip to content

Commit f5fcc26

Browse files
Merge pull request #44 from AristurtleDev/maintenance/build-process
Simplify build process
2 parents 27ccfa0 + 986fe4e commit f5fcc26

19 files changed

Lines changed: 4 additions & 367 deletions

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/upload-artifact@v4
4848
with:
4949
name: build-artifacts
50-
path: ./.artifacts/**/*.nupkg
50+
path: ./.artifacts/src/**/*.nupkg
5151

5252
deploy:
5353
name: "Deploy NuGets"

AsepriteDotNet.sln

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "benchmarks", "benchmarks",
3333
EndProject
3434
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ColorProcessingBenchmark", "benchmarks\ColorProcessingBenchmark\ColorProcessingBenchmark.csproj", "{201F4F7E-C68D-400C-AB87-9A77578DDBEB}"
3535
EndProject
36-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{1515BA5C-6095-4F5F-94E6-7D54D09321DE}"
37-
ProjectSection(SolutionItems) = preProject
38-
build\Directory.Build.props = build\Directory.Build.props
39-
EndProjectSection
40-
EndProject
41-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AsepriteDotNet.Build", "build\AsepriteDotNet.Build.csproj", "{27B2E61B-9CA4-44D2-834F-772B7D233D9F}"
42-
EndProject
4336
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{BC452291-6909-42FE-9343-7FD2F4F4F0E5}"
4437
ProjectSection(SolutionItems) = preProject
4538
.github\workflows\main.yml = .github\workflows\main.yml
@@ -78,10 +71,6 @@ Global
7871
{201F4F7E-C68D-400C-AB87-9A77578DDBEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
7972
{201F4F7E-C68D-400C-AB87-9A77578DDBEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
8073
{201F4F7E-C68D-400C-AB87-9A77578DDBEB}.Release|Any CPU.Build.0 = Release|Any CPU
81-
{27B2E61B-9CA4-44D2-834F-772B7D233D9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
82-
{27B2E61B-9CA4-44D2-834F-772B7D233D9F}.Debug|Any CPU.Build.0 = Debug|Any CPU
83-
{27B2E61B-9CA4-44D2-834F-772B7D233D9F}.Release|Any CPU.ActiveCfg = Release|Any CPU
84-
{27B2E61B-9CA4-44D2-834F-772B7D233D9F}.Release|Any CPU.Build.0 = Release|Any CPU
8574
{A6243E15-9D53-4FAB-A2B5-F216614AF832}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
8675
{A6243E15-9D53-4FAB-A2B5-F216614AF832}.Debug|Any CPU.Build.0 = Debug|Any CPU
8776
{A6243E15-9D53-4FAB-A2B5-F216614AF832}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -110,7 +99,6 @@ Global
11099
{18E8668C-4BF2-4F9B-8016-E1F22BD53BCA} = {B63FA11D-4B29-45F2-AAD9-BF489AEE7BAA}
111100
{A289C75E-0BCF-421F-AAE0-050F45AC4F4E} = {5F219449-CE10-4DD9-BBE5-251720F3B5E3}
112101
{201F4F7E-C68D-400C-AB87-9A77578DDBEB} = {C4B76AC7-83D0-4F29-BAB9-3C0EAFB31C0D}
113-
{27B2E61B-9CA4-44D2-834F-772B7D233D9F} = {1515BA5C-6095-4F5F-94E6-7D54D09321DE}
114102
{BC452291-6909-42FE-9343-7FD2F4F4F0E5} = {2B0F6763-3C96-4753-8E12-6A2975369212}
115103
{A6243E15-9D53-4FAB-A2B5-F216614AF832} = {E55B2B0D-9615-434F-942A-6C496A02E617}
116104
{E43B057B-37B4-4C77-AC25-376380318AEF} = {E55B2B0D-9615-434F-942A-6C496A02E617}

Directory.Build.props

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@
66
<SolutionDirectory>$(MSBuildThisFileDirectory)</SolutionDirectory>
77
</PropertyGroup>
88

9-
<!-- Standardize build output locations -->
10-
<PropertyGroup>
11-
<BaseArtifactsPath>$(SolutionDirectory).artifacts/</BaseArtifactsPath>
12-
<BaseArtifactsPathSuffix>$(ProjectCategory)/$(MSBuildProjectName)</BaseArtifactsPathSuffix>
13-
<BaseIntermediateOutputPath>$(BaseArtifactsPath)obj/$(BaseArtifactsPathSuffix)</BaseIntermediateOutputPath>
14-
<BaseOutputPath>$(BaseArtifactsPath)bin/$(BaseArtifactsPathSuffix)</BaseOutputPath>
15-
<PackageOutputPath>$(BaseArtifactsPath)pkg/$(BaseArtifactsPathSuffix)/$(Configuration)/</PackageOutputPath>
16-
</PropertyGroup>
17-
189
<!-- Standardize compilation settings -->
1910
<PropertyGroup>
2011
<NeutralLanguage>en</NeutralLanguage>

build.ps1

Lines changed: 0 additions & 2 deletions
This file was deleted.

build.sh

Lines changed: 0 additions & 1 deletion
This file was deleted.

build/AsepriteDotNet.Build.csproj

Lines changed: 0 additions & 10 deletions
This file was deleted.

build/BuildContext.cs

Lines changed: 0 additions & 108 deletions
This file was deleted.

build/Directory.Build.props

Lines changed: 0 additions & 11 deletions
This file was deleted.

build/Program.cs

Lines changed: 0 additions & 7 deletions
This file was deleted.

build/Tasks/BuildTask.cs

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)