-
Notifications
You must be signed in to change notification settings - Fork 67
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 #59 from ekonbenefits/moderize-repo
Moderize repo 2024
- Loading branch information
Showing
9 changed files
with
44 additions
and
29 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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
name: Build CrossComple .net core/.net framework Windows | ||
name: .net framework Windows | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Test Windows .net Framework Only | ||
runs-on: windows-2019 | ||
runs-on: windows-2022 | ||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup NuGet | ||
uses: NuGet/[email protected] | ||
|
||
- name: setup-msbuild | ||
uses: microsoft/[email protected] | ||
|
||
- name: Restore Packages | ||
- uses: actions/checkout@v4 | ||
- uses: NuGet/setup-nuget@v2 | ||
- uses: microsoft/setup-msbuild@v2 | ||
with: | ||
dotnet-version: 4.7.2 | ||
|
||
- name: Restore | ||
run: nuget restore ImpromptuInterface.sln | ||
- name: Build solution | ||
- name: Build | ||
run: msbuild ImpromptuInterface.sln -t:rebuild -property:Configuration=Release | ||
- name: Run vstests | ||
uses: microsoft/vstest-action@v1.0.0 | ||
- name: Test | ||
uses: josepho0918/vstest-action@0e887de8dcfab5ce3eecaf4ad6320bb9b3ecf633 | ||
with: | ||
testAssembly: UnitTestImpromptuInterface.dll | ||
searchFolder: .\Tests\UnitTestImpromptuInterface\bin\Release\*\ | ||
runInParallel: true | ||
otherConsoleOptions: /TestCaseFilter:"(TestCategory!=Performance)" | ||
platform: x64 | ||
- name: Publish | ||
run: | ||
dotnet nuget push '${{ github.workspace }}\publish\*.nupkg' --source https://nuget.pkg.github.com/ekonbenefits/index.json --api-key ${{ secrets.GITHUB_TOKEN }} |
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
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
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
2 changes: 1 addition & 1 deletion
2
Tests/UnitTestImpromptuInterface/UnitTestImpromptuInterface.csproj
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,5 +1,6 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<VersionPrefix>8.0.4</VersionPrefix> | ||
<VersionPrefix>8.0.6</VersionPrefix> | ||
<VersionSuffix Condition=" '$(GITHUB_RUN_NUMBER)' != '' ">preview$(GITHUB_RUN_NUMBER)</VersionSuffix> | ||
</PropertyGroup> | ||
</Project> |