Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
with:
path: Dynamo
repository: DynamoDS/Dynamo
- name: Setup dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
- name: Setup Nuget
uses: nuget/setup-nuget@a21f25cd3998bf370fde17e3f1b4c12c175172f9 # v2.0.0
- name: Setup msbuild
Expand Down
4 changes: 3 additions & 1 deletion TuneUp/TuneUp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
<Xmls Include="$(ProjectDir)manifests\*.xml" Exclude="@(ViewExtensionDefs)" />
<PackageJson Include="$(ProjectDir)manifests\pkg.json" />
<LocalizationENUS Include="$(OutDir)en-US\*" />
<LocalizationENGB Include="$(OutDir)en-GB\*" />
<LocalizationCSCZ Include="$(OutDir)cs-CZ\*" />
<LocalizationDEDE Include="$(OutDir)de-DE\*" />
<LocalizationESES Include="$(OutDir)es-ES\*" />
Expand All @@ -141,6 +142,7 @@
<Copy SourceFiles="@(ViewExtensionDefs)" DestinationFolder="$(ExtraFolder)" />
<Copy SourceFiles="@(PackageJson)" DestinationFolder="$(PackageFolder)" />
<Copy SourceFiles="@(LocalizationENUS)" DestinationFolder="$(BinFolder)\en-US" />
<Copy SourceFiles="@(LocalizationENGB)" DestinationFolder="$(BinFolder)\en-GB" />
<Copy SourceFiles="@(LocalizationCSCZ)" DestinationFolder="$(BinFolder)\cs-CZ" />
<Copy SourceFiles="@(LocalizationDEDE)" DestinationFolder="$(BinFolder)\de-DE" />
<Copy SourceFiles="@(LocalizationESES)" DestinationFolder="$(BinFolder)\es-ES" />
Expand Down Expand Up @@ -176,4 +178,4 @@
<MakeDir Directories="$(PackageExtraFolder)" Condition="!Exists($(PackageExtraFolder))" />
<MakeDir Directories="$(PackageDyfFolder)" Condition="!Exists($(PackageDyfFolder))" />
</Target>
</Project>
</Project>
Loading