-
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 #52 from ekonbenefits/makebuildproxy-instance
Refactor to allow a collectable version of impromptu interface
- Loading branch information
Showing
26 changed files
with
2,228 additions
and
2,306 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Build .net core | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Test ${{ matrix.os }} for dotnet ${{ matrix.dotnet }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
dotnet: [ '6.0.x' ] | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: ${{ matrix.dotnet }} | ||
- name: Build with dotnet core | ||
run: dotnet build --configuration Release | ||
- name: Tests | ||
run: dotnet test Tests/UnitTestImpromptuInterface/UnitTestImpromptuInterface.csproj --configuration Release --no-build --no-restore --filter=TestCategory!=Performance |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Build CrossComple .net core/.net framework Windows | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
name: Test Windows .net Framework Only | ||
runs-on: windows-2019 | ||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup NuGet | ||
uses: NuGet/[email protected] | ||
|
||
- name: setup-msbuild | ||
uses: microsoft/[email protected] | ||
|
||
- name: Restore Packages | ||
run: nuget restore ImpromptuInterface.sln | ||
- name: Build solution | ||
run: msbuild ImpromptuInterface.sln -t:rebuild -property:Configuration=Release | ||
- name: Run vstests | ||
uses: microsoft/[email protected] | ||
with: | ||
testAssembly: UnitTestImpromptuInterface.dll | ||
searchFolder: .\Tests\UnitTestImpromptuInterface\bin\Release\*\ | ||
runInParallel: true | ||
otherConsoleOptions: /TestCaseFilter:"(TestCategory!=Performance)" | ||
platform: x64 |
This file was deleted.
Oops, something went wrong.
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,3 +1,4 @@ | ||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EdotCover_002EIde_002ECore_002EFilterManagement_002EModel_002ESolutionFilterSettingsManagerMigrateSettings/@EntryIndexedValue">True</s:Boolean> | ||
<s:String x:Key="/Default/FilterSettingsManager/CoverageFilterXml/@EntryValue"><data><IncludeFilters /><ExcludeFilters /></data></s:String> | ||
<s:String x:Key="/Default/FilterSettingsManager/AttributeFilterXml/@EntryValue"><data /></s:String></wpf:ResourceDictionary> |
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
Oops, something went wrong.