Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .NET9 compatibility #327

Merged
merged 10 commits into from
Jan 7, 2025
Merged
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: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
branches: [ master-servicetitan ]
env:
DO_TargetFrameworks: net8.0
DO_TargetFrameworks: net9.0;net8.0
jobs:
build-and-test:
name: build-and-test
Expand All @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8
dotnet-version: 9
- name: Build
run: dotnet build -c Release -v q
- name: Tests.Core
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: bump-version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Bump
run: gawk -i inplace '{match($0,/(^.+DoVersion>[0-9]+.[0-9]+.[0-9]+.)([0-9]+)/,a);if(a[2]>0){print a[1]a[2]+1"</DoVersion>"}else{print $0}}' Version.props
- name: Commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet_build_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ name: Publish Nuget Package
on:
workflow_dispatch:
env:
DO_TargetFrameworks: net8.0
DO_TargetFrameworks: net9.0;net8.0
jobs:
build-and-publish:
name: Build & Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with: { dotnet-version: 8 }
uses: actions/setup-dotnet@v4
with: { dotnet-version: 9 }
- name: Create User.Directory.Build.props
run: echo >User.Directory.Build.props '<?xml version="1.0" encoding="utf-8"?><Project ToolsVersion="latest"><PropertyGroup Label="User defined variables"><DoNugetFeedUserName>nuget-publish-dataobjects</DoNugetFeedUserName><DoNugetFeedPassword>' ${{ secrets.NUGET_FEED_PASSWORD }} '</DoNugetFeedPassword><DoNugetFeedUrl>https://pkgs.dev.azure.com/servicetitan-packages/nuget/_packaging/servicetitan-nuget/nuget/v3/index.json</DoNugetFeedUrl></PropertyGroup></Project>'
- name: Build & Publish
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-sql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DO_CONFIG_FILE: "/tmp/do-test.cfg"
DO_TargetFrameworks: net8.0
DO_TargetFrameworks: net9.0
SQL_PASSWD: dbatools.I0
jobs:
test-with-sql:
Expand All @@ -19,7 +19,7 @@ jobs:
timezoneLinux: "UTC"
- name: Setup .NET
uses: actions/setup-dotnet@v4
with: { dotnet-version: 8 }
with: { dotnet-version: 9 }
- name: Setup MSSQL Tools
uses: rails-sqlserver/setup-mssql@v1
with:
Expand Down
8 changes: 3 additions & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
<DoIsIdeBuild>false</DoIsIdeBuild>
<DoIsIdeBuild Condition="$(BuildingInsideVisualStudio) == 'true'">true</DoIsIdeBuild>

<TargetFramework>net8.0</TargetFramework>

<!-- Disable "BinaryFormatter is obsolete" warnings for test projects -->
<NoWarn>$(NoWarn);CS0618;CS0672;CS1570;CS1572;CS1573;CS1574;CS1587;CS1734;NU1901;NU1902;NU1903;NU1904;SYSLIB0050;SYSLIB0051;</NoWarn>
<NoWarn Condition="$(MSBuildProjectName.Contains('Tests')) == 'true'">$(NoWarn);SYSLIB0011</NoWarn>
Expand All @@ -55,7 +53,7 @@
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
<TargetFrameworks>$(TargetFrameworks)</TargetFrameworks> <!-- the property -->
<TargetFrameworks Condition="'$(TargetFrameworks)'==''">$(DO_TargetFrameworks)</TargetFrameworks> <!-- env var -->
<TargetFrameworks Condition="'$(TargetFrameworks)'==''">net8.0</TargetFrameworks> <!-- fallback to default -->
<TargetFrameworks Condition="'$(TargetFrameworks)'==''">net9.0</TargetFrameworks> <!-- fallback to default -->
</PropertyGroup>

<PropertyGroup Condition = "$(Configuration.Contains('Debug')) == 'true'">
Expand All @@ -71,7 +69,7 @@
<PropertyGroup>
<NoLogo>true</NoLogo>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<LangVersion>12.0</LangVersion>
<LangVersion>Preview</LangVersion>
<SolutionDir Condition="$(SolutionDir) == ''">$([MSBuild]::EnsureTrailingSlash(
$([MSBuild]::GetDirectoryNameOfFileAbove('$(MSBuildThisFileDirectory)', 'Orm.sln'))))</SolutionDir>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
Expand All @@ -87,7 +85,7 @@
<ProjectAssetsFile>$(MSBuildProjectExtensionsPath)project.assets.json</ProjectAssetsFile>
<ProjectAssetsCacheFile>$(MSBuildProjectExtensionsPath)$(TargetFramework)\$(MSBuildProjectName).assets.cache</ProjectAssetsCacheFile>
<OrmKeyFile>$(SolutionDir)Orm\Orm.snk</OrmKeyFile>
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
<NoWarn>$(NoWarn);NETSDK1138</NoWarn>
</PropertyGroup>
<!-- Populate standard properties. -->
<PropertyGroup>
Expand Down
3 changes: 2 additions & 1 deletion MSBuild/DataObjects.Net.targets
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<CompileDependsOn>$(CompileDependsOn);XtensiveOrmBuild</CompileDependsOn>
<XtensiveOrmPath Condition="'$(XtensiveOrmPath)'==''">$(MSBuildThisFileDirectory)</XtensiveOrmPath>
<XtensiveOrmPath Condition="!HasTrailingSlash('$(XtensiveOrmPath)')">$(XtensiveOrmPath)\</XtensiveOrmPath>
<XtensiveWeaverFramework>net8.0</XtensiveWeaverFramework>
<XtensiveWeaverFramework>net9.0</XtensiveWeaverFramework>
<XtensiveWeaverFramework Condition="'$(TargetFramework)'=='net8.0'">net8.0</XtensiveWeaverFramework>
<XtensiveOrmWeaver Condition="'$(XtensiveOrmWeaver)'==''">$(XtensiveOrmPath)tools\weaver\$(XtensiveWeaverFramework)\Xtensive.Orm.Weaver.dll</XtensiveOrmWeaver>
<XtensiveOrmBuildDependsOn>$(XtensiveOrmBuildDependsOn)</XtensiveOrmBuildDependsOn>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ namespace Xtensive.Orm.Tests.Core.Comparison
[TestFixture]
public class ComparerProviderTests
{
[Explicit]
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like tests needs to be fixed, not just ignored.

Copy link
Collaborator Author

@SergeiPavlov SergeiPavlov Jan 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The disabled tests rely on BinarySerialization which does not work anymore
To fix the tests we have to invent some replacement of BinarySerialization.
Not sure it is our business

It is better to remove this functionality from DataObjects
We don't use it anyway

[Test]
public void SerializationTest()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

namespace Xtensive.Orm.Tests.Core.Linq
{
[Explicit]
[TestFixture]
public class SerializableExpressionsTest : ExpressionTestBase
{
Expand Down
1 change: 1 addition & 0 deletions Orm/Xtensive.Orm.Tests.Core/Tuples/LongTupleTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ namespace Xtensive.Orm.Tests.Core.Tuples
[TestFixture]
public class LongTupleTest
{
[Explicit]
[Test]
public void CombinedTest()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

namespace Xtensive.Orm.Tests.Core.Tuples
{
[Explicit]
[TestFixture]
public class TupleSerializationTest
{
Expand Down
3 changes: 2 additions & 1 deletion Orm/Xtensive.Orm.Tests/Model/FieldConverterTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ public void SingleValueTest()
}
}

[Explicit]
[Test]
public void CollectionTest()
{
Expand Down Expand Up @@ -169,4 +170,4 @@ public void CollectionTest()
}
}
}
}
}
5 changes: 3 additions & 2 deletions Orm/Xtensive.Orm.Tests/Model/VersionInfoTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ public void VersionFieldsTest()
Assert.IsTrue(simpleType.GetVersionColumns().Any(pair => pair.Field==simpleType.Fields["StructureField.ReferenceField.Id"]));
Assert.IsFalse(simpleType.GetVersionColumns().Any(pair => pair.Field==simpleType.Fields["ByteArrayField"]));
}


[Explicit]
[Test]
public void SerializeVersionInfoTest()
{
Expand All @@ -225,4 +226,4 @@ public void SerializeVersionInfoTest()
Assert.IsTrue(version.Equals(versionClone));
}
}
}
}
3 changes: 2 additions & 1 deletion Orm/Xtensive.Orm.Tests/Storage/RefTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class Author : Entity
public int Id { get; private set; }
}

[Explicit]
[TestFixture]
public class RefTest : AutoBuildTest
{
Expand Down Expand Up @@ -56,4 +57,4 @@ public void CombinedTest()

}
}
}
}
1 change: 1 addition & 0 deletions Orm/Xtensive.Orm.Tests/Storage/SerializationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public class Address : Structure

namespace Xtensive.Orm.Tests.Storage
{
[Explicit]
public class SerializationTest : AutoBuildTest
{
private readonly BinaryFormatter formatter = new BinaryFormatter();
Expand Down
3 changes: 2 additions & 1 deletion Orm/Xtensive.Orm.Tests/Storage/SerializedQueryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

namespace Xtensive.Orm.Tests.Storage
{
[Explicit]
[TestFixture]
public class SerializedQueryTest : ChinookDOModelTest
{
Expand All @@ -40,4 +41,4 @@ public void CombinedTest()
var result = deserializedQuery.ToList();
}
}
}
}
3 changes: 2 additions & 1 deletion Orm/Xtensive.Orm.Tests/Storage/UpdateVersionTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ public void AutoUpdateVersionTest()
}
}

[Explicit]
[Test]
public void SerializeVersionInfoTest()
{
Expand All @@ -526,4 +527,4 @@ public void SerializeVersionInfoTest()
Assert.IsTrue(versionInfo==clone);
}
}
}
}
1 change: 1 addition & 0 deletions Orm/Xtensive.Orm.Tests/Storage/VersionRootTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ public void UpdateVersionWithManyRootsTest()
}
}

[Explicit]
[Test]
public void SerializeVersionInfoTest()
{
Expand Down
10 changes: 5 additions & 5 deletions Orm/Xtensive.Orm/Orm/Internals/FieldAccessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ namespace Xtensive.Orm.Internals
{
internal abstract class FieldAccessor
{
private FieldInfo field;
private FieldInfo fld;

public FieldInfo Field {
get { return field; }
get { return fld; }
set {
if (field!=null)
if (fld !=null)
throw Exceptions.AlreadyInitialized("Field");
field = value;
fld = value;
}
}

Expand All @@ -40,4 +40,4 @@ protected FieldAccessor(object defaultUntypedValue)
DefaultUntypedValue = defaultUntypedValue;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ internal sealed class LocalCollectionExpression : ParameterizedExpression

public IEnumerable<ColumnExpression> Columns =>
Fields
.SelectMany(field => field.Value is ColumnExpression
? new[] { field.Value }
: ((LocalCollectionExpression) field.Value).Columns.Cast<IMappedExpression>())
.SelectMany(fld => fld.Value is ColumnExpression
? new[] { fld.Value }
: ((LocalCollectionExpression) fld.Value).Columns.Cast<IMappedExpression>())
.Cast<ColumnExpression>();

public override LocalCollectionExpression Remap(ColNum offset, Dictionary<Expression, Expression> processedExpressions)
Expand Down
16 changes: 8 additions & 8 deletions Orm/Xtensive.Orm/Orm/Model/ColumnInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public sealed class ColumnInfo : Node,
private sbyte? precision;
private object defaultValue;
private string defaultSqlExpression;
private FieldInfo field;
private FieldInfo fld;
private NodeCollection<IndexInfo> indexes;
private CultureInfo cultureInfo = CultureInfo.InvariantCulture;

Expand Down Expand Up @@ -123,11 +123,11 @@ public bool IsLazyLoad {
/// </summary>
public FieldInfo Field {
[DebuggerStepThrough]
get { return field; }
get { return fld; }
[DebuggerStepThrough]
set {
EnsureNotLocked();
field = value;
fld = value;
}
}

Expand Down Expand Up @@ -227,7 +227,7 @@ public bool Equals(ColumnInfo obj)
return false;
if (ReferenceEquals(this, obj))
return true;
return field.Equals(obj.field);
return fld.Equals(obj.fld);
}

/// <inheritdoc/>
Expand All @@ -236,7 +236,7 @@ public override bool Equals(object obj) =>
|| obj is ColumnInfo other && Equals(other);

/// <inheritdoc/>
public override int GetHashCode() => field.GetHashCode();
public override int GetHashCode() => fld.GetHashCode();

#endregion

Expand All @@ -253,7 +253,7 @@ object ICloneable.Clone()
/// </summary>
public ColumnInfo Clone()
{
ColumnInfo clone = new ColumnInfo(field);
ColumnInfo clone = new ColumnInfo(fld);
clone.Name = Name;
clone.attributes = attributes;
clone.valueType = valueType;
Expand All @@ -280,7 +280,7 @@ public ColumnInfo Clone()
public ColumnInfo(FieldInfo field)
{
indexes = NodeCollection<IndexInfo>.Empty;
this.field = field;
this.fld = field;
IsSystem = field.IsSystem;
IsDeclared = true;
IsNullable = field.IsNullable;
Expand Down Expand Up @@ -311,7 +311,7 @@ public ColumnInfo(FieldInfo field)
public ColumnInfo(FieldInfo field, Type valueType)
{
indexes = NodeCollection<IndexInfo>.Empty;
this.field = field;
this.fld = field;
this.valueType = valueType;
IsSystem = field.IsSystem;
IsDeclared = true;
Expand Down
10 changes: 5 additions & 5 deletions Orm/Xtensive.Orm/Orm/Model/Stored/StoredFieldInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ public IEnumerable<StoredFieldInfo> PrimitiveFields
else {
var queue = new Queue<StoredFieldInfo>();
queue.Enqueue(this);
while (queue.TryDequeue(out var field)) {
if (field.IsPrimitive)
result.Add(field);
while (queue.TryDequeue(out var fld)) {
if (fld.IsPrimitive)
result.Add(fld);
else
foreach (var child in field.Fields)
foreach (var child in fld.Fields)
queue.Enqueue(child);
}
}
Expand Down Expand Up @@ -181,4 +181,4 @@ public override string ToString()
return DeclaringType.Name + "." + Name;
}
}
}
}
8 changes: 4 additions & 4 deletions Orm/Xtensive.Orm/Orm/Model/TypeDiscriminatorMap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ public sealed class TypeDiscriminatorMap : Node,
private TypeInfo @default;
private readonly Dictionary<object, TypeInfo> map = new Dictionary<object, TypeInfo>();
private readonly Dictionary<TypeInfo, object> reversedMap = new Dictionary<TypeInfo, object>();
private FieldInfo field;
private FieldInfo fld;

public FieldInfo Field
{
get { return field; }
get { return fld; }
set
{
EnsureNotLocked();
if (field != null)
if (fld != null)
throw new InvalidOperationException(Strings.ExTypeDiscriminatorFieldIsAlreadySet);
field = value;
fld = value;
}
}

Expand Down
Loading
Loading