Skip to content

Commit 74c4f50

Browse files
committed
[C#] 0.2.0.
1 parent fc32cd4 commit 74c4f50

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

.github/workflows/CD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Test
22-
run: dotnet test -c Release -f netcoreapp3.1
22+
run: dotnet test -c Release -f net5
2323
- name: Generate PDF with CSharp code
2424
if: github.event_name == 'push'
2525
run: |

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,3 @@ ASALocalRun/
328328

329329
# MFractors (Xamarin productivity tool) working folder
330330
.mfractor/
331-
332-
# GitHub refuses chages to .github folder at the moment
333-
.github/

csharp/Platform.Setters.Tests/Platform.Setters.Tests.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

33
<PropertyGroup>
4-
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.1;net5</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
<LangVersion>latest</LangVersion>
77
</PropertyGroup>

csharp/Platform.Setters/Platform.Setters.csproj

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<Description>LinksPlatform's Platform.Setters Class Library</Description>
55
<Copyright>Konstantin Diachenko</Copyright>
66
<AssemblyTitle>Platform.Setters</AssemblyTitle>
7-
<VersionPrefix>0.1.0</VersionPrefix>
7+
<VersionPrefix>0.2.0</VersionPrefix>
88
<Authors>Konstantin Diachenko</Authors>
9-
<TargetFrameworks>net472;netstandard2.0;netstandard2.1</TargetFrameworks>
9+
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net5</TargetFrameworks>
1010
<AssemblyName>Platform.Setters</AssemblyName>
1111
<PackageId>Platform.Setters</PackageId>
1212
<PackageTags>LinksPlatform;Setters;Setter;SetterBase</PackageTags>
@@ -24,10 +24,7 @@
2424
<IncludeSymbols>true</IncludeSymbols>
2525
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2626
<LangVersion>latest</LangVersion>
27-
<PackageReleaseNotes>Lowest supported version of .NET Framework is now 4.7.2.
28-
Platform.Interfaces dependency updated from 0.2.0 to 0.3.0.
29-
Bug fix.
30-
Added tests.</PackageReleaseNotes>
27+
<PackageReleaseNotes>Added support for .NET 5.</PackageReleaseNotes>
3128
</PropertyGroup>
3229

3330
<ItemGroup Condition="$(TargetFramework.StartsWith('net4')) AND '$(MSBuildRuntimeType)' == 'Core' AND '$(OS)' != 'Windows_NT'">

0 commit comments

Comments
 (0)