Skip to content

Commit fecdeeb

Browse files
authored
Particular.Packaging update follow-up (#6926)
* Remove preview SDK quality from workflows * Remove workaround implemented in Particular.Packaging * Add THIRD-PARTY-NOTICES.txt
1 parent 3693f0f commit fecdeeb

File tree

6 files changed

+42
-20
lines changed

6 files changed

+42
-20
lines changed

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
uses: actions/[email protected]
3030
with:
3131
dotnet-version: 8.0.x
32-
dotnet-quality: 'preview'
3332
- name: Build
3433
run: dotnet build src --configuration Release
3534
- name: Upload packages

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
uses: actions/[email protected]
2020
with:
2121
dotnet-version: 8.0.x
22-
dotnet-quality: 'preview'
2322
- name: Build
2423
run: dotnet build src --configuration Release
2524
- name: Sign NuGet packages

THIRD-PARTY-NOTICES.txt

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
License notice for net-object-deep-copy
2+
---------------------------------------
3+
4+
https://github.com/Burtsev-Alexey/net-object-deep-copy/blob/master/README
5+
6+
Source code is released under the MIT license.
7+
8+
The MIT License (MIT)
9+
Copyright (c) 2014 Burtsev Alexey
10+
11+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
16+
17+
License notice for FastExpressionCompiler
18+
-----------------------------------------
19+
20+
https://github.com/dadhi/FastExpressionCompiler/blob/master/LICENSE
21+
22+
The MIT License (MIT)
23+
24+
Copyright (c) 2016-2023 Maksim Volkau
25+
26+
Permission is hereby granted, free of charge, to any person obtaining a copy
27+
of this software and associated documentation files (the "Software"), to deal
28+
in the Software without restriction, including without limitation the rights
29+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
30+
copies of the Software, and to permit persons to whom the Software is
31+
furnished to do so, subject to the following conditions:
32+
33+
The above copyright notice and this permission notice shall be included in all
34+
copies or substantial portions of the Software.
35+
36+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
37+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
39+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
40+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
41+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
42+
SOFTWARE.

src/NServiceBus.AcceptanceTests/NServiceBus.AcceptanceTests.csproj

-6
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,4 @@
2929
<RemoveSourceFileFromPackage Include="AssemblyInfo.cs" />
3030
</ItemGroup>
3131

32-
<Target Name="WorkaroundForTesthostBeingAddedAsContent" BeforeTargets="_GetPackageFiles">
33-
<ItemGroup>
34-
<Content Update="**\testhost.*" Pack="false" />
35-
</ItemGroup>
36-
</Target>
37-
3832
</Project>

src/NServiceBus.PersistenceTests/NServiceBus.PersistenceTests.csproj

-6
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,4 @@
3232
<RemoveSourceFileFromPackage Include="PersistenceTestsConfiguration.cs" />
3333
</ItemGroup>
3434

35-
<Target Name="WorkaroundForTesthostBeingAddedAsContent" BeforeTargets="_GetPackageFiles">
36-
<ItemGroup>
37-
<Content Update="**\testhost.*" Pack="false" />
38-
</ItemGroup>
39-
</Target>
40-
4135
</Project>

src/NServiceBus.TransportTests/NServiceBus.TransportTests.csproj

-6
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,4 @@
2828
<RemoveSourceFileFromPackage Include="TransportTestPolicy.cs" />
2929
</ItemGroup>
3030

31-
<Target Name="WorkaroundForTesthostBeingAddedAsContent" BeforeTargets="_GetPackageFiles">
32-
<ItemGroup>
33-
<Content Update="**\testhost.*" Pack="false" />
34-
</ItemGroup>
35-
</Target>
36-
3731
</Project>

0 commit comments

Comments
 (0)