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
1 change: 1 addition & 0 deletions OSLC4Net_SDK/OSLC4Net.Core.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<Project Path="Tests/OSLC4Net.Client.Tests/OSLC4Net.Client.Tests.csproj" />
<Project Path="Tests/OSLC4Net.Core.DotNetRdfProviderTests/OSLC4Net.Core.DotNetRdfProviderTests.csproj" />
<Project Path="Tests/OSLC4Net.Core.QueryTests/OSLC4Net.Core.QueryTests.csproj" />
<Project Path="Tests/OSLC4Net.Core.Tests/OSLC4Net.Core.Tests.csproj" />
<Project Path="Tests/OSLC4Net.Test.AspireHost/OSLC4Net.Test.AspireHost.csproj" />
<Project Path="Tests/OSLC4Net.Test.RefImpl/OSLC4Net.Test.RefImpl.csproj" />
</Folder>
Expand Down
3 changes: 3 additions & 0 deletions OSLC4Net_SDK/OSLC4Net.Core/Model/ResourceShapeFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ static ResourceShapeFactory()
TYPE_TO_VALUE_TYPE[typeof(BigInteger)] = ValueType.Integer;
TYPE_TO_VALUE_TYPE[typeof(DateTime)] = ValueType.DateTime;
TYPE_TO_VALUE_TYPE[typeof(Uri)] = ValueType.Resource;
TYPE_TO_VALUE_TYPE[typeof(ICollection<Uri>)] = ValueType.Resource;
TYPE_TO_VALUE_TYPE[typeof(IEnumerable<Uri>)] = ValueType.Resource;
TYPE_TO_VALUE_TYPE[typeof(ISet<Uri>)] = ValueType.Resource;
}

private ResourceShapeFactory()
Expand Down
30 changes: 30 additions & 0 deletions OSLC4Net_SDK/Tests/OSLC4Net.Core.Tests/OSLC4Net.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\OSLC4Net.Core\OSLC4Net.Core.csproj" />
<ProjectReference Include="..\..\OSLC4Net.Domains.RequirementsManagement\OSLC4Net.Domains.RequirementsManagement.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Diagnostics" />
<PackageReference Include="coverlet.collector">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Meziantou.Extensions.Logging.Xunit.v3" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="NSubstitute" />
<PackageReference Include="NSubstitute.Analyzers.CSharp">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.v3" />
</ItemGroup>
</Project>
Loading
Loading