Skip to content

Commit 556ae7a

Browse files
[C#] 0.4.0
1 parent 02bf660 commit 556ae7a

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

csharp/Platform.Collections/Platform.Collections.csproj

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>LinksPlatform's Platform.Collections Class Library</Description>
55
<Copyright>konard;tynkute</Copyright>
66
<AssemblyTitle>Platform.Collections</AssemblyTitle>
7-
<VersionPrefix>0.3.2</VersionPrefix>
7+
<VersionPrefix>0.4.0</VersionPrefix>
88
<Authors>konard;tynkute</Authors>
99
<TargetFramework>net7</TargetFramework>
1010
<AssemblyName>Platform.Collections</AssemblyName>
@@ -13,7 +13,7 @@
1313
<PackageTags>LinksPlatform;Collections;Extensions;Arrays;Concurrent;Lists;Segments;SegmentWalkers;Sets;Stacks;Trees</PackageTags>
1414
<PackageIconUrl>https://raw.githubusercontent.com/linksplatform/Documentation/18469f4d033ee9a5b7b84caab9c585acab2ac519/doc/Avatar-rainbow-icon-64x64.png</PackageIconUrl>
1515
<PackageProjectUrl>https://linksplatform.github.io/Collections</PackageProjectUrl>
16-
<PackageLicenseExpression>Unlicensed</PackageLicenseExpression>
16+
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
1717
<RepositoryType>git</RepositoryType>
1818
<RepositoryUrl>git://github.com/linksplatform/Collections</RepositoryUrl>
1919
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
@@ -24,29 +24,24 @@
2424
<IncludeSymbols>true</IncludeSymbols>
2525
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2626
<LangVersion>latest</LangVersion>
27-
<PackageReleaseNotes>Dotnet 6 support is added.
28-
Platform.Interfaces dependency is updated from 0.4.1 to 0.4.2.</PackageReleaseNotes>
27+
<PackageReleaseNotes>Target frameworks are changed to net7.
28+
Platform.Interfaces dependency is updated from 0.4.2 to 0.5.0.
29+
Platform.Random dependency is updated from 0.2.0 to 0.3.0.
30+
Platform.Disposables dependency is updated from 0.3.0 to 0.4.0.
31+
Platform.Ranges dependency is updated from 0.3.0 to 0.5.0.</PackageReleaseNotes>
2932
<Nullable>enable</Nullable>
3033
</PropertyGroup>
3134

32-
<ItemGroup Condition="$(TargetFramework.StartsWith('net4')) AND '$(MSBuildRuntimeType)' == 'Core' AND '$(OS)' != 'Windows_NT'">
33-
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
34-
</ItemGroup>
35-
3635
<ItemGroup>
3736
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
3837
</ItemGroup>
3938

4039
<ItemGroup>
4140
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
42-
<PackageReference Include="Platform.Interfaces" Version="0.4.2" />
43-
<PackageReference Include="Platform.Disposables" Version="0.3.0" />
44-
<PackageReference Include="Platform.Ranges" Version="0.3.0" />
45-
<PackageReference Include="Platform.Random" Version="0.2.0" />
41+
<PackageReference Include="Platform.Interfaces" Version="0.5.0" />
42+
<PackageReference Include="Platform.Disposables" Version="0.4.0" />
43+
<PackageReference Include="Platform.Ranges" Version="0.5.0" />
44+
<PackageReference Include="Platform.Random" Version="0.3.0" />
4645
</ItemGroup>
4746

48-
<Target Name="CSharpToCppTranslation" AfterTargets="PostBuildEvent" Condition="'$(OS)' == 'Windows_NT' AND $(TargetFramework) == 'net5' AND !('$(SolutionDir)'=='' OR '$(SolutionDir)'=='*Undefined*')">
49-
<Exec Command="..\..\CSharpToCppTranslator\bin\$(Configuration)\net5\CSharpToCppTranslator.exe $(ProjectDir) $(SolutionDir)cpp\$(ProjectName)\"></Exec>
50-
</Target>
51-
5247
</Project>

0 commit comments

Comments
 (0)