-
+
-
+
diff --git a/src/Connected.Common.Types.UI/TaxRates/Components/TaxRateEdit.razor b/src/Connected.Common.Types.UI/TaxRates/Components/TaxRateEdit.razor
index 95cbf27..7bfa731 100644
--- a/src/Connected.Common.Types.UI/TaxRates/Components/TaxRateEdit.razor
+++ b/src/Connected.Common.Types.UI/TaxRates/Components/TaxRateEdit.razor
@@ -5,21 +5,13 @@
TaxRateEditForm
-
-
-
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
diff --git a/src/Connected.Common.Types.UI/version.json b/src/Connected.Common.Types.UI/version.json
deleted file mode 100644
index 2a1593f..0000000
--- a/src/Connected.Common.Types.UI/version.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
- "version": "1.0-prerelease",
- "semVer1NumericIdentifierPadding": 4,
- "nugetPackageVersion": {
- "semVer": 2, // optional. Set to either 1 or 2 to control how the NuGet package version string is generated. Default is 1.
- "precision": "build" // optional. Use when you want to use a more or less precise package version than the default major.minor.build.
- },
- "cloudBuild": {
- "buildNumber": {
- "enabled": true
- }
- }
-}
\ No newline at end of file
diff --git a/src/Connected.Common.Types/Connected.Common.Types.csproj b/src/Connected.Common.Types/Connected.Common.Types.csproj
index ba0f5a5..6cb969f 100644
--- a/src/Connected.Common.Types/Connected.Common.Types.csproj
+++ b/src/Connected.Common.Types/Connected.Common.Types.csproj
@@ -5,7 +5,7 @@
enable
enable
$(MSBuildProjectName.Replace(" ", "_"))
-
True
+
false
$(AssemblyName)
Tom PIT ltd
2022 Tom PIT ltd
@@ -18,18 +18,6 @@
$(OutputPath)
-
-
-
-
-
-
-
-
-
True
@@ -41,8 +29,11 @@
-
-
-
-
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Connected.Common.Types/version.json b/src/Connected.Common.Types/version.json
deleted file mode 100644
index 2a1593f..0000000
--- a/src/Connected.Common.Types/version.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
- "version": "1.0-prerelease",
- "semVer1NumericIdentifierPadding": 4,
- "nugetPackageVersion": {
- "semVer": 2, // optional. Set to either 1 or 2 to control how the NuGet package version string is generated. Default is 1.
- "precision": "build" // optional. Use when you want to use a more or less precise package version than the default major.minor.build.
- },
- "cloudBuild": {
- "buildNumber": {
- "enabled": true
- }
- }
-}
\ No newline at end of file
diff --git a/tests/Connected.Common.Types.Tests/TaxRates/Ops/InsertTests.cs b/tests/Connected.Common.Types.Tests/TaxRates/Ops/InsertTests.cs
index 1b008b1..40e92f1 100644
--- a/tests/Connected.Common.Types.Tests/TaxRates/Ops/InsertTests.cs
+++ b/tests/Connected.Common.Types.Tests/TaxRates/Ops/InsertTests.cs
@@ -192,7 +192,7 @@ public class InsertTests
var eventServiceFake = instanceFaker.GetMock
()!;
- _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
+ _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
/*
* Test
*/
@@ -201,7 +201,7 @@ public class InsertTests
/*
* Assert
*/
- eventServiceFake.Verify(e => e.Enqueue(It.IsAny(), ServiceEvents.Inserted, It.IsAny()), Times.Exactly(1));
+ eventServiceFake.Verify(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Inserted, It.IsAny()), Times.Exactly(1));
}
[TestMethod("Insert commit refreshes cache exactly once")]
@@ -218,7 +218,7 @@ public class InsertTests
var eventServiceFake = instanceFaker.GetMock()!;
- _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
+ _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
/*
* Test
*/
@@ -254,7 +254,7 @@ public class InsertTests
_ = eventServiceFake
.InSequence(sequence)
- .Setup(e => e.Enqueue(It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
+ .Setup(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
/*
* Test
*/
@@ -264,7 +264,7 @@ public class InsertTests
* Assert
*/
taxRateCacheFake.Verify(e => e.Refresh(It.IsAny()), Times.Exactly(1));
- eventServiceFake.Verify(e => e.Enqueue(It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
+ eventServiceFake.Verify(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Inserted, It.IsAny()));
}
}
}
\ No newline at end of file
diff --git a/tests/Connected.Common.Types.Tests/TaxRates/Ops/QueryTests.cs b/tests/Connected.Common.Types.Tests/TaxRates/Ops/QueryTests.cs
index b985684..4e2017c 100644
--- a/tests/Connected.Common.Types.Tests/TaxRates/Ops/QueryTests.cs
+++ b/tests/Connected.Common.Types.Tests/TaxRates/Ops/QueryTests.cs
@@ -1,4 +1,5 @@
using System.Collections.Immutable;
+using Connected.Common.Types.TaxRates;
using Connected.Entities;
using Connected.ServiceModel;
using static Connected.Common.Types.TaxRates.TaxRateOps;
diff --git a/tests/Connected.Common.Types.Tests/TaxRates/Ops/UpdateTests.cs b/tests/Connected.Common.Types.Tests/TaxRates/Ops/UpdateTests.cs
index 93d55d5..4416602 100644
--- a/tests/Connected.Common.Types.Tests/TaxRates/Ops/UpdateTests.cs
+++ b/tests/Connected.Common.Types.Tests/TaxRates/Ops/UpdateTests.cs
@@ -219,7 +219,7 @@ public class UpdateTests
var eventServiceFake = instanceFaker.GetMock()!;
- _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), ServiceEvents.Updated, It.IsAny()));
+ _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Updated, It.IsAny()));
/*
* Argument values are irrelevant for the test
@@ -234,7 +234,7 @@ public class UpdateTests
/*
* Assert
*/
- eventServiceFake.Verify(e => e.Enqueue(It.IsAny(), ServiceEvents.Updated, It.IsAny()), Times.Exactly(1));
+ eventServiceFake.Verify(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Updated, It.IsAny()), Times.Exactly(1));
}
[TestMethod("Update commit refreshes cache exactly once")]
@@ -251,7 +251,7 @@ public class UpdateTests
var eventServiceFake = instanceFaker.GetMock()!;
- _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), ServiceEvents.Updated, It.IsAny()));
+ _ = eventServiceFake.Setup(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Updated, It.IsAny()));
/*
* Argument values are irrelevant for the test
@@ -293,7 +293,7 @@ public class UpdateTests
_ = eventServiceFake
.InSequence(sequence)
- .Setup(e => e.Enqueue(It.IsAny(), ServiceEvents.Updated, It.IsAny()));
+ .Setup(e => e.Enqueue(It.IsAny(), It.IsAny(), ServiceEvents.Updated, It.IsAny()));
/*
* Argument values are irrelevant for the test