Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Core/IPersistenceProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ public enum PersistenceProviderType
/// <summary>CosmosDB</summary>
[Display(Name = "CosmosDB")]
CosmosDb,

/// <summary>Warp10</summary>
[Display(Name = "SenX Warp10")]
Warp10
}

/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/Core/ScaleOut.Streaming.DigitalTwin.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
<RepositoryUrl>https://github.com/scaleoutsoftware/DigitalTwinCore-dotnet</RepositoryUrl>
<RepositoryType></RepositoryType>
<RootNamespace>Scaleout.Streaming.DigitalTwin.Core</RootNamespace>
<Version>5.3.0</Version>
<Version>5.4.0</Version>
<Description>Core classes and interfaces that support ScaleOut Digital Twins™.</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>[email protected]</PackageIcon>
<PackageTags>scaleout digital twin core</PackageTags>
<PackageReleaseNotes>Adds a new RemoveRealTimeTwin abstract method to the ProcessingContext class and a new Remove value to the ProcessingResult enum.</PackageReleaseNotes>
<PackageReleaseNotes>Add a new persistence provider for SenX Warp10.</PackageReleaseNotes>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<SignAssembly>True</SignAssembly>
<Title>ScaleOut DigitalTwin Builder™ Core Types</Title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<Version>5.3.0</Version>
<Version>5.4.0</Version>
<Authors>scaleoutsoftware</Authors>
<Company>ScaleOut Software, Inc.</Company>
<Product>ScaleOut Digital Twin Workbench Machine Learning Extension</Product>
Expand All @@ -14,7 +14,7 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/scaleoutsoftware/DigitalTwinCore-dotnet</RepositoryUrl>
<PackageTags>scaleout dt digitaltwin digital twin workbench machinelearning ml</PackageTags>
<PackageReleaseNotes>Dependency update to introduce a new API to report anomaly data for retraining of ML algorithms</PackageReleaseNotes>
<PackageReleaseNotes>Dependency update to introduce a new persistence provider.</PackageReleaseNotes>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Workbench/Scaleout.DigitalTwin.Workbench.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageIcon>[email protected]</PackageIcon>
<RepositoryUrl>https://github.com/scaleoutsoftware/DigitalTwinCore-dotnet</RepositoryUrl>
<PackageTags>scaleout dt digitaltwin digital twin workbench</PackageTags>
<PackageReleaseNotes>Now, it implements a new RemoveRealTimeTwin method of the ProcessingContext class and handles a new Remove value of the ProcessingResult enum.</PackageReleaseNotes>
<PackageReleaseNotes>Dependency update to introduce a new persistence provider.</PackageReleaseNotes>
<!--<LangVersion>9.0</LangVersion>-->
<Version>5.3.0</Version>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
Expand Down