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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvitek-karas <vitek.karas@microsoft.com>2019-11-29 17:35:30 +0300
committerMarek Safar <marek.safar@gmail.com>2019-11-30 11:48:41 +0300
commit774a0b175a99b2302881d8ff4b0d051e7f2246f4 (patch)
tree9be0003a8569488cc4630dbbf87d3f069f9d5a48 /test/Mono.Linker.Tests.Cases.Expectations/Mono.Linker.Tests.Cases.Expectations.csproj
parentcf0087516e9f15bb880938aec5223598d0676007 (diff)
Fix the illink.sln so that it loads in VS on Win
The trick is apprently adding the Configurations property. The rest of the changes in the projects is more of a cleanup (moving general property groups up top). Also renamed the ILLink.Tasks tests to match the folder and the product names. VS on Windows forced rewrite of the illink.sln file unfortunately - trying to go back to the original ordering doesn't help - VS will overwrite it next time it opens it. But it's really just order changes and project type GUIDs.
Diffstat (limited to 'test/Mono.Linker.Tests.Cases.Expectations/Mono.Linker.Tests.Cases.Expectations.csproj')
-rw-r--r--test/Mono.Linker.Tests.Cases.Expectations/Mono.Linker.Tests.Cases.Expectations.csproj8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/Mono.Linker.Tests.Cases.Expectations/Mono.Linker.Tests.Cases.Expectations.csproj b/test/Mono.Linker.Tests.Cases.Expectations/Mono.Linker.Tests.Cases.Expectations.csproj
index e0b5ba192..db2718da3 100644
--- a/test/Mono.Linker.Tests.Cases.Expectations/Mono.Linker.Tests.Cases.Expectations.csproj
+++ b/test/Mono.Linker.Tests.Cases.Expectations/Mono.Linker.Tests.Cases.Expectations.csproj
@@ -1,9 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup Condition=" $(Configuration.StartsWith('illink')) ">
+ <PropertyGroup>
+ <Configurations>Debug;Release;illink_Debug;illink_Release</Configurations>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="$(Configuration.StartsWith('illink'))">
<TargetFramework>netcoreapp3.0</TargetFramework>
</PropertyGroup>
- <PropertyGroup Condition=" ! $(Configuration.StartsWith('illink')) ">
+ <PropertyGroup Condition="!$(Configuration.StartsWith('illink'))">
<TargetFramework>net471</TargetFramework>
</PropertyGroup>