1
0

Updated dependencies, removed .NETStandard2.0
All checks were successful
Branch Build / build-test-deploy (push) Successful in 2m2s
Documentation Build / build-test-deploy (push) Successful in 2m25s

This commit is contained in:
2026-02-17 17:57:51 +01:00
parent 5631303cc6
commit 25b58f0bb6
14 changed files with 25 additions and 33 deletions

View File

@@ -1,8 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<AssemblyName>amwd-common-aspnetcore</AssemblyName>
<RootNamespace>AMWD.Common.AspNetCore</RootNamespace>

View File

@@ -1,8 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<AssemblyName>amwd-common-efcore</AssemblyName>
<RootNamespace>AMWD.Common.EntityFrameworkCore</RootNamespace>
@@ -19,6 +17,7 @@
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
</ItemGroup>

View File

@@ -1,8 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
<AssemblyName>amwd-common-msgpack</AssemblyName>
<RootNamespace>AMWD.Common.MessagePack</RootNamespace>
@@ -20,8 +18,4 @@
<PackageReference Include="MessagePack" Version="2.5.198" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.AspNetCore.HttpOverrides" Version="2.1.1" />
</ItemGroup>
</Project>

View File

@@ -1,8 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>amwd-common-test</AssemblyName>
<RootNamespace>AMWD.Common.Test</RootNamespace>
@@ -18,7 +16,7 @@
<ItemGroup>
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.11.1" />
</ItemGroup>
</Project>

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
@@ -32,7 +33,7 @@ namespace AMWD.Common.Test
{
Headers = req.Headers,
Method = req.Method,
Properties = req.Properties,
Options = req.Options.ToDictionary(),
RequestUri = req.RequestUri,
Version = req.Version
};
@@ -107,9 +108,9 @@ namespace AMWD.Common.Test
public HttpMethod Method { get; internal set; }
/// <summary>
/// Gets of properties for the HTTP request.
/// Gets of properties/options for the HTTP request.
/// </summary>
public IDictionary<string, object> Properties { get; internal set; }
public Dictionary<string, object> Options { get; internal set; }
/// <summary>
/// Gets the <see cref="Uri"/> used for the HTTP request.

View File

@@ -1,8 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
<AssemblyName>amwd-common</AssemblyName>
<RootNamespace>AMWD.Common</RootNamespace>
@@ -20,11 +18,6 @@
<PackageReference Include="Unclassified.DeepConvert" Version="1.4.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.AspNetCore.HttpOverrides" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
</ItemGroup>

View File

@@ -1,5 +1,7 @@
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
<NrtRevisionFormat>{semvertag:main}{!:-dev}</NrtRevisionFormat>
<NrtContinuousIntegrationBuild>$(ContinuousIntegrationBuild)</NrtContinuousIntegrationBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>