Skip to content

Commit

Permalink
Merge pull request #2 from oscar-wos/FlashingXMLHintFix
Browse files Browse the repository at this point in the history
Flashing xml hint fix
  • Loading branch information
oscar-wos authored Jul 17, 2024
2 parents 9f8bc03 + 42bbf98 commit 3f0179d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand All @@ -29,6 +31,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand All @@ -44,10 +48,12 @@ jobs:
- name: Create Directories
run: |
mkdir -p plugin/shared/Menu
mkdir -p plugin/plugins/FlashingXMLHintFix
- name: Move Files
run: |
mv ./src/bin/Release/net8.0/* ./plugin/shared/Menu
mv ./FlashingXMLHintFix/src/bin/Release/net8.0/* ./plugin/plugins/FlashingXMLHintFix
- name: Zip
run: |
Expand All @@ -57,7 +63,7 @@ jobs:
- name: Extract version and create tag
id: extract_version
run: |
version="1.0.7"
version="1.0.8"
echo "Version found: $version"
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "FlashingXMLHintFix"]
path = FlashingXMLHintFix
url = https://gitlab.com/dea_bb/FlashingXMLHintFix.git
1 change: 1 addition & 0 deletions FlashingXMLHintFix
Submodule FlashingXMLHintFix added at fb737e
6 changes: 6 additions & 0 deletions Menu.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Menu", "src\Menu.csproj", "
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example", "Example\Example.csproj", "{A5A96213-72CC-4E43-BD6C-0BC567C7029C}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FlashingXMLHintFix", "FlashingXMLHintFix\src\FlashingXMLHintFix.csproj", "{7A420669-8C62-4C3D-AD46-5D86B330991B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -21,6 +23,10 @@ Global
{A5A96213-72CC-4E43-BD6C-0BC567C7029C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5A96213-72CC-4E43-BD6C-0BC567C7029C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5A96213-72CC-4E43-BD6C-0BC567C7029C}.Release|Any CPU.Build.0 = Release|Any CPU
{7A420669-8C62-4C3D-AD46-5D86B330991B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7A420669-8C62-4C3D-AD46-5D86B330991B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7A420669-8C62-4C3D-AD46-5D86B330991B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7A420669-8C62-4C3D-AD46-5D86B330991B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit 3f0179d

Please sign in to comment.