diff options
author | Lauro Moura <lauromoura@expertisesolutions.com.br> | 2019-12-05 19:11:45 -0300 |
---|---|---|
committer | Lauro Moura <lauromoura@expertisesolutions.com.br> | 2019-12-05 19:11:45 -0300 |
commit | 5fa3c4fbd3aad7962f3b3369df8b8c68618f6814 (patch) | |
tree | fbedd87ee6d52090108265cdbb31395dac7dadfa | |
parent | c1f3ad86dfa30f968c1fbf2e065bbe370435ee66 (diff) |
csharp: Hardcode dotnet versioningdevs/lauromoura/dotnet-versioning
This commit makes EFL# require `netstandard2.1` and the test suite
`netcoreapp3.0`
-rw-r--r-- | src/bindings/mono/efl_sharp.csproj.in | 2 | ||||
-rw-r--r-- | src/tests/efl_mono/efl_sharp_test_suite.csproj.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bindings/mono/efl_sharp.csproj.in b/src/bindings/mono/efl_sharp.csproj.in index ce6a9e463c..0354990600 100644 --- a/src/bindings/mono/efl_sharp.csproj.in +++ b/src/bindings/mono/efl_sharp.csproj.in | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <OutputType>Library</OutputType> | 4 | <OutputType>Library</OutputType> |
5 | <TargetFramework>netstandard@NETSTANDARD_VERSION@</TargetFramework> | 5 | <TargetFramework>netstandard2.1</TargetFramework> |
6 | </PropertyGroup> | 6 | </PropertyGroup> |
7 | 7 | ||
8 | <PropertyGroup> | 8 | <PropertyGroup> |
diff --git a/src/tests/efl_mono/efl_sharp_test_suite.csproj.in b/src/tests/efl_mono/efl_sharp_test_suite.csproj.in index c23636345c..90080eacd0 100644 --- a/src/tests/efl_mono/efl_sharp_test_suite.csproj.in +++ b/src/tests/efl_mono/efl_sharp_test_suite.csproj.in | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <OutputType>Exe</OutputType> | 4 | <OutputType>Exe</OutputType> |
5 | <TargetFramework>netcoreapp@NETCOREAPP_VERSION@</TargetFramework> | 5 | <TargetFrameworks>netcoreapp3.0</TargetFrameworks> |
6 | </PropertyGroup> | 6 | </PropertyGroup> |
7 | 7 | ||
8 | <PropertyGroup> | 8 | <PropertyGroup> |