-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from TimeWarpEngineering/Cramer/2024-05-19/Build
Fix case on directories to PascalCase
- Loading branch information
Showing
15 changed files
with
51 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,12 +37,12 @@ jobs: | |
|
||
- name: Build TimeWarp.OptionsValidation | ||
run: | | ||
cd source/TimeWarp.OptionsValidation/ | ||
cd Source/TimeWarp.OptionsValidation/ | ||
dotnet build --configuration Debug | ||
- name: Publish TimeWarp.OptionsValidation | ||
run: | | ||
cd source/TimeWarp.OptionsValidation/bin/Packages | ||
cd Source/TimeWarp.OptionsValidation/bin/Packages | ||
dotnet nuget push *.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.PUBLISH_TO_NUGET_ORG }} | ||
- name: Verify Directory.Build.props | ||
|
@@ -57,14 +57,14 @@ jobs: | |
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
$version = (Select-String -Path "Directory.Build.props" -Pattern '<Version>(.*?)</Version>').Matches.Groups[1].Value | ||
$version = (Select-String -Path "Directory.Build.props" -Pattern '<PackageVersion>(.*?)</PackageVersion>').Matches.Groups[1].Value | ||
git tag -a "$version" -m "Release $version" | ||
git push origin "$version" | ||
- name: Check if version is not a pre-release | ||
id: check_pre_release | ||
run: | | ||
$version = (Select-String -Path "Directory.Build.props" -Pattern '<Version>(.*?)</Version>').Matches.Groups[1].Value | ||
$version = (Select-String -Path "Directory.Build.props" -Pattern '<PackageVersion>(.*?)</PackageVersion>').Matches.Groups[1].Value | ||
$isPreRelease = $version -match '-(alpha|beta)' | ||
echo "IsPreRelease=$isPreRelease" | ||
# Setting output that indicates whether it's a pre-release version | ||
|
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.0.31903.59 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{59C752B9-F1AF-478D-BACC-38074CB5E272}" | ||
ProjectSection(SolutionItems) = preProject | ||
.editorconfig = .editorconfig | ||
.gitignore = .gitignore | ||
CodeMaid.config = CodeMaid.config | ||
Directory.Build.props = Directory.Build.props | ||
Directory.Packages.props = Directory.Packages.props | ||
LICENSE = LICENSE | ||
NuGet.config = NuGet.config | ||
README.md = README.md | ||
EndProjectSection | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimeWarp.OptionsValidation.Tests", "tests\TimeWarp.OptionsValidation.Tests\TimeWarp.OptionsValidation.Tests.csproj", "{A353C15D-D878-43E7-B567-AAE845FC41BA}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimeWarp.OptionsValidation", "source\TimeWarp.OptionsValidation\TimeWarp.OptionsValidation.csproj", "{CAC853CD-7002-4D2F-B53E-112653F779D5}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {19789E18-C00D-400F-A284-2B9452DB9DFF} | ||
EndGlobalSection | ||
EndGlobal | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.0.31903.59 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{59C752B9-F1AF-478D-BACC-38074CB5E272}" | ||
ProjectSection(SolutionItems) = preProject | ||
.editorconfig = .editorconfig | ||
.gitignore = .gitignore | ||
CodeMaid.config = CodeMaid.config | ||
Directory.Build.props = Directory.Build.props | ||
Directory.Packages.props = Directory.Packages.props | ||
LICENSE = LICENSE | ||
NuGet.config = NuGet.config | ||
README.md = README.md | ||
EndProjectSection | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimeWarp.OptionsValidation.Tests", "Tests\TimeWarp.OptionsValidation.Tests\TimeWarp.OptionsValidation.Tests.csproj", "{A353C15D-D878-43E7-B567-AAE845FC41BA}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TimeWarp.OptionsValidation", "Source\TimeWarp.OptionsValidation\TimeWarp.OptionsValidation.csproj", "{CAC853CD-7002-4D2F-B53E-112653F779D5}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{A353C15D-D878-43E7-B567-AAE845FC41BA}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{CAC853CD-7002-4D2F-B53E-112653F779D5}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {19789E18-C00D-400F-A284-2B9452DB9DFF} | ||
EndGlobalSection | ||
EndGlobal |