summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLauro Moura <lauromoura@expertisesolutions.com.br>2019-12-05 19:11:45 -0300
committerLauro Moura <lauromoura@expertisesolutions.com.br>2019-12-05 19:11:45 -0300
commit5fa3c4fbd3aad7962f3b3369df8b8c68618f6814 (patch)
treefbedd87ee6d52090108265cdbb31395dac7dadfa
parentc1f3ad86dfa30f968c1fbf2e065bbe370435ee66 (diff)
downloadefl-devs/lauromoura/dotnet-versioning.tar.gz
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.in2
-rw-r--r--src/tests/efl_mono/efl_sharp_test_suite.csproj.in2
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 @@
<PropertyGroup>
<OutputType>Library</OutputType>
- <TargetFramework>netstandard@NETSTANDARD_VERSION@</TargetFramework>
+ <TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<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 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp@NETCOREAPP_VERSION@</TargetFramework>
+ <TargetFrameworks>netcoreapp3.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>