Skip to content

Commit 71a2b7e

Browse files
committed
Migrate to .NET 10 GA
- Remove EnablePreviewFeatures flag - Update LangVersion from preview to latestMajor - Update badge from 10.0_Preview to 10.0 - Remove preview configuration from README - Bump version to 1.0.5
1 parent be371af commit 71a2b7e

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![codecov](https://codecov.io/gh/ANcpLua/SWEN3.Paperless.RabbitMq/branch/main/graph/badge.svg?token=lgxIXBnFrn)](https://codecov.io/gh/ANcpLua/SWEN3.Paperless.RabbitMq)
2-
[![.NET 10](https://img.shields.io/badge/.NET-10.0_Preview-7C3AED)](https://dotnet.microsoft.com/download/dotnet/10.0)
2+
[![.NET 10](https://img.shields.io/badge/.NET-10.0-7C3AED)](https://dotnet.microsoft.com/download/dotnet/10.0)
33
[![NuGet](https://img.shields.io/nuget/v/SWEN3.Paperless.RabbitMq?label=NuGet&color=0891B2)](https://www.nuget.org/packages/SWEN3.Paperless.RabbitMq/)
44
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/ANcpLua/SWEN3.Paperless.RabbitMq/blob/main/LICENSE)
55

@@ -9,10 +9,6 @@ RabbitMQ messaging library for .NET with SSE support and AI-powered document sum
99

1010
## Configuration
1111

12-
```csharp
13-
<EnablePreviewFeatures>true</EnablePreviewFeatures>
14-
```
15-
1612
```json
1713
{
1814
"RabbitMQ": {

SWEN3.Paperless.RabbitMq.Tests/SWEN3.Paperless.RabbitMq.Tests.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<EnablePreviewFeatures>true</EnablePreviewFeatures>
8-
<LangVersion>preview</LangVersion>
7+
<LangVersion>latestMajor</LangVersion>
98
<IsPackable>false</IsPackable>
109
<IsTestProject>true</IsTestProject>
1110
</PropertyGroup>

SWEN3.Paperless.RabbitMq/SWEN3.Paperless.RabbitMq.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<EnablePreviewFeatures>true</EnablePreviewFeatures>
8-
<LangVersion>preview</LangVersion>
7+
<LangVersion>latestMajor</LangVersion>
98
<PackageId>SWEN3.Paperless.RabbitMq</PackageId>
10-
<Version>1.0.4</Version>
9+
<Version>1.0.5</Version>
1110
<Authors>Alexander Nachtmann</Authors>
1211
<Description>RabbitMQ messaging and SSE support for Paperless</Description>
13-
<PackageTags>rabbitmq;sse;messaging;paperless;net10;preview</PackageTags>
12+
<PackageTags>rabbitmq;sse;messaging;paperless;net10</PackageTags>
1413
<RepositoryUrl>https://github.com/ANcpLua/SWEN3.Paperless.RabbitMq</RepositoryUrl>
1514
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1615
<PackageReadmeFile>README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)