Skip to content

Commit 34feb89

Browse files
authored
Add new locale to final build output (#101)
* Update TuneUp.csproj * Update build.yml
1 parent 3ae120b commit 34feb89

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ jobs:
1919
with:
2020
path: Dynamo
2121
repository: DynamoDS/Dynamo
22+
- name: Setup dotnet
23+
uses: actions/setup-dotnet@v5
24+
with:
25+
dotnet-version: |
26+
8.0.x
27+
10.0.x
2228
- name: Setup Nuget
2329
uses: nuget/setup-nuget@a21f25cd3998bf370fde17e3f1b4c12c175172f9 # v2.0.0
2430
- name: Setup msbuild

TuneUp/TuneUp.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@
121121
<Xmls Include="$(ProjectDir)manifests\*.xml" Exclude="@(ViewExtensionDefs)" />
122122
<PackageJson Include="$(ProjectDir)manifests\pkg.json" />
123123
<LocalizationENUS Include="$(OutDir)en-US\*" />
124+
<LocalizationENGB Include="$(OutDir)en-GB\*" />
124125
<LocalizationCSCZ Include="$(OutDir)cs-CZ\*" />
125126
<LocalizationDEDE Include="$(OutDir)de-DE\*" />
126127
<LocalizationESES Include="$(OutDir)es-ES\*" />
@@ -141,6 +142,7 @@
141142
<Copy SourceFiles="@(ViewExtensionDefs)" DestinationFolder="$(ExtraFolder)" />
142143
<Copy SourceFiles="@(PackageJson)" DestinationFolder="$(PackageFolder)" />
143144
<Copy SourceFiles="@(LocalizationENUS)" DestinationFolder="$(BinFolder)\en-US" />
145+
<Copy SourceFiles="@(LocalizationENGB)" DestinationFolder="$(BinFolder)\en-GB" />
144146
<Copy SourceFiles="@(LocalizationCSCZ)" DestinationFolder="$(BinFolder)\cs-CZ" />
145147
<Copy SourceFiles="@(LocalizationDEDE)" DestinationFolder="$(BinFolder)\de-DE" />
146148
<Copy SourceFiles="@(LocalizationESES)" DestinationFolder="$(BinFolder)\es-ES" />
@@ -176,4 +178,4 @@
176178
<MakeDir Directories="$(PackageExtraFolder)" Condition="!Exists($(PackageExtraFolder))" />
177179
<MakeDir Directories="$(PackageDyfFolder)" Condition="!Exists($(PackageDyfFolder))" />
178180
</Target>
179-
</Project>
181+
</Project>

0 commit comments

Comments
 (0)