Skip to content

Commit

Permalink
[C#] 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Jun 4, 2021
1 parent 96dab37 commit 6864173
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
submodules: true
- name: Test
run: dotnet test -c Release -f netcoreapp3.1
run: dotnet test -c Release -f net5
- name: Generate PDF with CSharp code
if: github.event_name == 'push'
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>net5</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.1;net5</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions csharp/Platform.Reflection/Platform.Reflection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<Description>LinksPlatform's Platform.Reflection Class Library</Description>
<Copyright>Konstantin Diachenko</Copyright>
<AssemblyTitle>Platform.Reflection</AssemblyTitle>
<VersionPrefix>0.4.1</VersionPrefix>
<VersionPrefix>0.5.0</VersionPrefix>
<Authors>Konstantin Diachenko</Authors>
<TargetFrameworks>net472;netstandard2.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net5</TargetFrameworks>
<AssemblyName>Platform.Reflection</AssemblyName>
<PackageId>Platform.Reflection</PackageId>
<PackageTags>LinksPlatform;Reflection;AssemblyExtensions;DelegateHelpers;DynamicExtensions;EnsureExtensions;FieldInfoExtensions;ILGeneratorExtensions;MethodInfoExtensions;NotSupportedExceptionDelegateFactory;NumericType;PropertyInfoExtensions;TypeBuilderExtensions;TypeExtensions;Types</PackageTags>
Expand All @@ -24,8 +24,8 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>latest</LangVersion>
<PackageReleaseNotes>Platform.Collections dependency updated from 0.2.0 to 0.2.1.
Multiply, CheckedMultiply and Divide methods added into ILGeneratorExtensions.</PackageReleaseNotes>
<PackageReleaseNotes>NET 5 support is added.
Platform.Collections dependency updated from 0.2.1 to 0.3.0.</PackageReleaseNotes>
</PropertyGroup>

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

0 comments on commit 6864173

Please sign in to comment.