Compare commits

...

1 Commits

Author SHA1 Message Date
Lauro Moura 5fa3c4fbd3 csharp: Hardcode dotnet versioning
This commit makes EFL# require `netstandard2.1` and the test suite
`netcoreapp3.0`
2019-12-05 19:11:45 -03:00
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard@NETSTANDARD_VERSION@</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<PropertyGroup>

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp@NETCOREAPP_VERSION@</TargetFramework>
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>