Skip to content

Commit 4fd165e

Browse files
committed
Update CI version tag description in README
1 parent f38af0e commit 4fd165e

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Or add to your `NuGet.config`:
136136
</configuration>
137137
```
138138

139-
CI builds are published with pre-release version tags (e.g. `1.0.0-alpha.12345+sha.abcdef`). Use them to try new features early—avoid in production unless you understand the changes.
139+
CI builds are published with pre-release version tags (e.g. `1.0.0-preview.12345+sha.abcdef`). Use them to try new features early—avoid in production unless you understand the changes.
140140

141141
## 🤝 Contributing
142142

src/Foundatio.Mediator.Abstractions/Foundatio.Mediator.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="..\..\build\common.props" />
33
<PropertyGroup>
4-
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<RootNamespace>Foundatio.Mediator</RootNamespace>
66
</PropertyGroup>
77

src/Foundatio.Mediator/Foundatio.Mediator.csproj

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,14 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15+
<ProjectReference Include="..\Foundatio.Mediator.Abstractions\Foundatio.Mediator.Abstractions.csproj" />
1516
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0" PrivateAssets="all" />
1617
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" PrivateAssets="all" />
1718
</ItemGroup>
1819

19-
<!-- Build the abstractions project first to ensure DLLs are available for packaging -->
20-
<Target Name="BuildAbstractionsFirst" BeforeTargets="Build">
21-
<MSBuild Projects="..\Foundatio.Mediator.Abstractions\Foundatio.Mediator.Abstractions.csproj"
22-
Targets="Build"
23-
Properties="Configuration=$(Configuration)"
24-
RemoveProperties="TargetFramework" />
25-
</Target>
26-
2720
<ItemGroup>
2821
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
29-
<None Include="..\Foundatio.Mediator.Abstractions\bin\$(Configuration)\net9.0\Foundatio.Mediator.Abstractions.dll" Pack="true" PackagePath="lib/net9.0" Visible="false" />
30-
<None Include="..\Foundatio.Mediator.Abstractions\bin\$(Configuration)\net10.0\Foundatio.Mediator.Abstractions.dll" Pack="true" PackagePath="lib/net10.0" Visible="false" />
22+
<None Include="..\Foundatio.Mediator.Abstractions\bin\$(Configuration)\netstandard2.0\Foundatio.Mediator.Abstractions.dll" Pack="true" PackagePath="lib/netstandard2.0" Visible="false" />
3123
<Content Include="Foundatio.Mediator.props" Pack="true" PackagePath="build" Visible="true" />
3224
<Content Include="Foundatio.Mediator.targets" Pack="true" PackagePath="build" Visible="true" />
3325
</ItemGroup>

0 commit comments

Comments
 (0)