Skip to content

Commit 4e9a209

Browse files
Bump version due to non-null constraint (#725)
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
1 parent ac570b8 commit 4e9a209

File tree

3 files changed

+2
-25
lines changed

3 files changed

+2
-25
lines changed

src/DynamicData.Tests/Cache/ObservableChangeSetFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace DynamicData.Tests.Cache;
1717
public class ObservableChangeSetFixture
1818
{
1919

20-
[Fact] //Disabled due to test failing when run with a test runner. Run locally in isolation and it works
20+
// [Fact] //Disabled due to test failing when run with a test runner. Run locally in isolation and it works
2121
[Description("See https://github.com/reactivemarbles/DynamicData/issues/383")]
2222
[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.")]
2323
private async Task AsyncSubscriptionCanReceiveMultipleResults()

src/DynamicData.sln

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicData.Tests", "Dynami
2323
EndProject
2424
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicData.Benchmarks", "DynamicData.Benchmarks\DynamicData.Benchmarks.csproj", "{42566F48-05FC-483E-8B2F-D0EA4F28E870}"
2525
EndProject
26-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Non Production", "Non Production", "{C2F87459-1CA6-4675-AF18-C4D0A0502F4D}"
27-
EndProject
28-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DynamicData.Profile", "..\NonProduction\DynamicData.Profile\DynamicData.Profile.csproj", "{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}"
29-
EndProject
3026
Global
3127
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3228
Debug|Any CPU = Debug|Any CPU
@@ -83,29 +79,10 @@ Global
8379
{42566F48-05FC-483E-8B2F-D0EA4F28E870}.Release|x64.Build.0 = Release|Any CPU
8480
{42566F48-05FC-483E-8B2F-D0EA4F28E870}.Release|x86.ActiveCfg = Release|Any CPU
8581
{42566F48-05FC-483E-8B2F-D0EA4F28E870}.Release|x86.Build.0 = Release|Any CPU
86-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
87-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Any CPU.Build.0 = Debug|Any CPU
88-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
89-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
90-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x64.ActiveCfg = Debug|Any CPU
91-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x64.Build.0 = Debug|Any CPU
92-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x86.ActiveCfg = Debug|Any CPU
93-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Debug|x86.Build.0 = Debug|Any CPU
94-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Any CPU.ActiveCfg = Release|Any CPU
95-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Any CPU.Build.0 = Release|Any CPU
96-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
97-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|Mixed Platforms.Build.0 = Release|Any CPU
98-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x64.ActiveCfg = Release|Any CPU
99-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x64.Build.0 = Release|Any CPU
100-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x86.ActiveCfg = Release|Any CPU
101-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89}.Release|x86.Build.0 = Release|Any CPU
10282
EndGlobalSection
10383
GlobalSection(SolutionProperties) = preSolution
10484
HideSolutionNode = FALSE
10585
EndGlobalSection
106-
GlobalSection(NestedProjects) = preSolution
107-
{92D246B5-0D2F-4F58-A1DD-D54D30BD7F89} = {C2F87459-1CA6-4675-AF18-C4D0A0502F4D}
108-
EndGlobalSection
10986
GlobalSection(ExtensibilityGlobals) = postSolution
11087
SolutionGuid = {2495D109-BD85-4568-9B27-06D36E6EF562}
11188
EndGlobalSection

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.14",
2+
"version": "8.0",
33
"publicReleaseRefSpec": [
44
"^refs/heads/main$", // we release out of master
55
"^refs/heads/preview/.*", // we release previews

0 commit comments

Comments
 (0)