Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@microsoft.com>2019-07-09 16:39:44 +0300
committerMatt Ward <matt.ward@microsoft.com>2019-08-07 11:16:10 +0300
commited4d42fa3802f5df41a752b129c489da9fefee0f (patch)
tree4dffb93c0bc2375d1cf467edd8343f35b8040dc7 /main/tests/test-projects
parentffd883e27fc6d0704e237b32dc78e07cf16529b2 (diff)
[Core] Include original short name with target framework monikers
Refactored the code so that the DotNetProject's TargetFrameworkMonikers is used by the type system and project model instead of getting the short names as an enumerable list of strings. The original short name is copied to the TargetFrameworkMoniker so the full name of the framework is available as well as the original short name.
Diffstat (limited to 'main/tests/test-projects')
-rw-r--r--main/tests/test-projects/multi-target/short-name-formats.csproj7
1 files changed, 7 insertions, 0 deletions
diff --git a/main/tests/test-projects/multi-target/short-name-formats.csproj b/main/tests/test-projects/multi-target/short-name-formats.csproj
new file mode 100644
index 0000000000..7073db31de
--- /dev/null
+++ b/main/tests/test-projects/multi-target/short-name-formats.csproj
@@ -0,0 +1,7 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFrameworks>netcoreapp1.1;netstandard10;net472;NETStandard12</TargetFrameworks>
+ </PropertyGroup>
+
+</Project>