Skip to content

Commit 5087f71

Browse files
committed
source package
1 parent 768ab33 commit 5087f71

File tree

5 files changed

+20
-50
lines changed

5 files changed

+20
-50
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 0.9.0
2+
- Breaking Changes
3+
- Switch to the source package, and change the access rights of related classes from public to internal
4+
5+
## 0.8.0
6+
- Breaking Changes
7+
- Renamed from Sera.Union to Coplt.Union, as Sera is no longer maintained. Renaming the namespace is a breaking change

Coplt.Union.Source/Coplt.Union.Source.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<PropertyGroup>
66
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
77
<PackageId>Coplt.Union</PackageId>
8-
<Version>0.9.0-alpha.1</Version>
8+
<Version>0.9.0</Version>
99
<IsPackable>true</IsPackable>
1010
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1111
</PropertyGroup>

Coplt.Union.Utilities/Coplt.Union.Utilities.csproj

+6-19
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<RootNamespace>Coplt.Union.Utilities</RootNamespace>
9-
<Version>0.8.0</Version>
9+
<Version>0.9.0</Version>
1010
<Description>Tagged union for c#</Description>
1111
<PackageProjectUrl>https://github.com/coplt/Coplt.Union</PackageProjectUrl>
1212
<RepositoryUrl>https://github.com/coplt/Coplt.Union</RepositoryUrl>
@@ -21,35 +21,22 @@
2121
<ProjectReference Include="..\Coplt.Union.Analyzers\Coplt.Union.Analyzers.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer">
2222
<PrivateAssets>all</PrivateAssets>
2323
</ProjectReference>
24-
<ProjectReference Include="..\Coplt.Union.Source\Coplt.Union.Source.csproj" ReferenceOutputAssembly="false" />
2524
</ItemGroup>
2625

2726
<ItemGroup>
28-
<Compile Include="..\Coplt.Union\**\*.cs">
29-
<Pack>true</Pack>
30-
<PackagePath>$(ContentTargetFolders)\cs\any\$(PackageId)\</PackagePath>
31-
<Visible>false</Visible>
32-
</Compile>
27+
<Compile Include="..\Coplt.Union\**\*.cs" Visible="false"/>
3328
<Compile Remove="..\Coplt.Union\obj\**"/>
3429
<Compile Remove="..\Coplt.Union\bin\**"/>
35-
36-
<Compile Update="@(Compile)">
37-
<Pack>true</Pack>
38-
</Compile>
39-
40-
<EmbeddedResource Update="@(EmbeddedResource)">
41-
<Pack>true</Pack>
42-
</EmbeddedResource>
4330
</ItemGroup>
4431

4532
<ItemGroup>
46-
<None Include="..\LICENSE" Pack="true" PackagePath="\" />
47-
<None Include="..\README.md" Pack="true" PackagePath="\" />
33+
<None Include="..\LICENSE" Pack="true" PackagePath="\"/>
34+
<None Include="..\README.md" Pack="true" PackagePath="\"/>
4835
</ItemGroup>
4936

5037
<ItemGroup>
51-
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1" />
52-
<PackageReference Include="System.Text.Json" Version="8.0.5" />
38+
<PackageReference Include="Microsoft.Bcl.HashCode" Version="1.1.1"/>
39+
<PackageReference Include="System.Text.Json" Version="8.0.5"/>
5340
</ItemGroup>
5441

5542
</Project>

ManualTesting/ManualTesting.csproj

+2-14
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,13 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<ProjectReference Include="..\Coplt.Union.Analyzers\Coplt.Union.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
11+
<ProjectReference Include="..\Coplt.Union.Analyzers\Coplt.Union.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<Compile Include="..\Coplt.Union\**\*.cs">
16-
<Pack>true</Pack>
17-
<PackagePath>$(ContentTargetFolders)\cs\any\$(PackageId)\</PackagePath>
18-
<Visible>false</Visible>
19-
</Compile>
15+
<Compile Include="..\Coplt.Union\**\*.cs" Visible="false"/>
2016
<Compile Remove="..\Coplt.Union\obj\**"/>
2117
<Compile Remove="..\Coplt.Union\bin\**"/>
22-
23-
<Compile Update="@(Compile)">
24-
<Pack>true</Pack>
25-
</Compile>
26-
27-
<EmbeddedResource Update="@(EmbeddedResource)">
28-
<Pack>true</Pack>
29-
</EmbeddedResource>
3018
</ItemGroup>
3119

3220
</Project>

Tests/Tests.csproj

+4-16
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,14 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<ProjectReference Include="..\Coplt.Union.Analyzers\Coplt.Union.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
22-
<ProjectReference Include="..\Coplt.Union.Utilities\Coplt.Union.Utilities.csproj" />
21+
<ProjectReference Include="..\Coplt.Union.Analyzers\Coplt.Union.Analyzers.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
22+
<ProjectReference Include="..\Coplt.Union.Utilities\Coplt.Union.Utilities.csproj"/>
2323
</ItemGroup>
24-
24+
2525
<ItemGroup>
26-
<Compile Include="..\Coplt.Union\**\*.cs">
27-
<Pack>true</Pack>
28-
<PackagePath>$(ContentTargetFolders)\cs\any\$(PackageId)\</PackagePath>
29-
<Visible>false</Visible>
30-
</Compile>
26+
<Compile Include="..\Coplt.Union\**\*.cs" Visible="false"/>
3127
<Compile Remove="..\Coplt.Union\obj\**"/>
3228
<Compile Remove="..\Coplt.Union\bin\**"/>
33-
34-
<Compile Update="@(Compile)">
35-
<Pack>true</Pack>
36-
</Compile>
37-
38-
<EmbeddedResource Update="@(EmbeddedResource)">
39-
<Pack>true</Pack>
40-
</EmbeddedResource>
4129
</ItemGroup>
4230

4331
</Project>

0 commit comments

Comments
 (0)