Skip to content

Commit

Permalink
Bump version due to non-null constraint (#725)
Browse files Browse the repository at this point in the history
Remove profile from the solution
Comment out private test because it has started to run -> I can only presume an upgrade to the test libraries has change this
  • Loading branch information
RolandPheasant committed Sep 22, 2023
1 parent ac570b8 commit 4e9a209
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 25 deletions.
2 changes: 1 addition & 1 deletion src/DynamicData.Tests/Cache/ObservableChangeSetFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace DynamicData.Tests.Cache;
public class ObservableChangeSetFixture
{

[Fact] //Disabled due to test failing when run with a test runner. Run locally in isolation and it works
// [Fact] //Disabled due to test failing when run with a test runner. Run locally in isolation and it works
[Description("See https://github.com/reactivemarbles/DynamicData/issues/383")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "xUnit1030:Do not call ConfigureAwait in test method", Justification = "Without ConfigureAwait(false) we get a flakey test which always work when run in isolation but periodically fails when all tests are run.")]
private async Task AsyncSubscriptionCanReceiveMultipleResults()
Expand Down
23 changes: 0 additions & 23 deletions src/DynamicData.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicData.Tests", "Dynami
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicData.Benchmarks", "DynamicData.Benchmarks\DynamicData.Benchmarks.csproj", "{42566F48-05FC-483E-8B2F-D0EA4F28E870}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Non Production", "Non Production", "{C2F87459-1CA6-4675-AF18-C4D0A0502F4D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicData.Profile", "..\NonProduction\DynamicData.Profile\DynamicData.Profile.csproj", "{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -83,29 +79,10 @@ Global
{42566F48-05FC-483E-8B2F-D0EA4F28E870}.Release|x64.Build.0 = Release|Any CPU
{42566F48-05FC-483E-8B2F-D0EA4F28E870}.Release|x86.ActiveCfg = Release|Any CPU
{42566F48-05FC-483E-8B2F-D0EA4F28E870}.Release|x86.Build.0 = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Any CPU.Build.0 = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x64.ActiveCfg = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x64.Build.0 = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x86.ActiveCfg = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x86.Build.0 = Debug|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Any CPU.ActiveCfg = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Any CPU.Build.0 = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x64.ActiveCfg = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x64.Build.0 = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x86.ActiveCfg = Release|Any CPU
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89} = {C2F87459-1CA6-4675-AF18-C4D0A0502F4D}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2495D109-BD85-4568-9B27-06D36E6EF562}
EndGlobalSection
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.14",
"version": "8.0",
"publicReleaseRefSpec": [
"^refs/heads/main$", // we release out of master
"^refs/heads/preview/.*", // we release previews
Expand Down

0 comments on commit 4e9a209

Please sign in to comment.