Skip to content

Commit

Permalink
9.0.0 start
Browse files Browse the repository at this point in the history
  • Loading branch information
clown committed Mar 27, 2024
1 parent 702e7e4 commit 12f6c8c
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion AppVeyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 8.6.1.{build}
version: 9.0.0.{build}
environment:
PROJECT_NAME: 'Cube.Core'
TEST_TOOL: '..\packages\OpenCover\4.7.1221\tools\OpenCover.Console.exe'
Expand Down
2 changes: 1 addition & 1 deletion Applications/Forms/Cube.Forms.Demo.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Copyright>Copyright © 2010 CubeSoft, Inc.</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/AlphaFS/Cube.FileSystem.AlphaFS.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Wraps the AlphaFS package compatible with the Cube.FileSystem interface.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Core/Cube.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Basic components to practice the MVVM pattern in application development.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Forms/Controls/Cube.Forms.Controls.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Provides GUI components in WinForms applications.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Forms/Core/Cube.Forms.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Provides support the MVVM pattern in WinForms applications.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/NLog/Cube.Logging.NLog.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Wraps the NLog package compatible with the Cube.ILoggerSource interface.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Tests/Cube.Private.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Private package to test Cube.* projects.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Trick/Cube.Trick.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Contains experimental and undocumented functions.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Xui/Cube.Xui.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Description>Bindings, converters, commands, behaviors, and other components to provide support the MVVM pattern in WPF applications.</Description>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Core/Cube.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft, Inc.</Company>
<Product>Cube.Tests</Product>
Expand Down
4 changes: 2 additions & 2 deletions Tests/Core/Sources/Extensions/AssemblyTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static IEnumerable<TestCaseData> TestCases
Configuration = Configuration,
Trademark = string.Empty,
Culture = string.Empty,
Version = new(8, 6, 1, 0),
Version = new(9, 0, 0, 0),
});

yield return new TestCaseData(typeof(Methods).Assembly, new Expected
Expand All @@ -109,7 +109,7 @@ public static IEnumerable<TestCaseData> TestCases
Configuration = Configuration,
Trademark = string.Empty,
Culture = string.Empty,
Version = new(8, 6, 1, 0),
Version = new(9, 0, 0, 0),
});
}
}
Expand Down
4 changes: 2 additions & 2 deletions Tests/Core/Sources/Extensions/UriTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void With_Null()
[Test]
public void With_Assembly()
{
var dest = $"{Create()}?ver=8.6.1";
var dest = $"{Create()}?ver=9.0.0";
var src = Create().With(GetType().Assembly);

Assert.That(src.ToString(), Is.EqualTo(dest));
Expand All @@ -177,7 +177,7 @@ public void With_Assembly()
public void With_SoftwareVersion()
{
var asm = GetType().Assembly;
var dest = $"{Create()}?ver=8.6.1-beta";
var dest = $"{Create()}?ver=9.0.0-beta";
var src = Create().With(new SoftwareVersion(asm) { Suffix = "-beta" });

Assert.That(src.ToString(), Is.EqualTo(dest));
Expand Down
2 changes: 1 addition & 1 deletion Tests/FileSystem/Cube.FileSystem.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Copyright>Copyright © 2010 CubeSoft, Inc.</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Xui/Cube.Xui.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>8.6.1</Version>
<Version>9.0.0</Version>
<Authors>clown;cube-soft</Authors>
<Company>CubeSoft</Company>
<Copyright>Copyright © 2010 CubeSoft, Inc.</Copyright>
Expand Down

0 comments on commit 12f6c8c

Please sign in to comment.