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:
authorSven Boemer <sbomer@gmail.com>2020-04-09 23:06:57 +0300
committerGitHub <noreply@github.com>2020-04-09 23:06:57 +0300
commite3e80aaa6c9dd4451dd9132810f58a66bf52cf5f (patch)
treed620b52bab045d37414d81ad7aecfcf02abe46a6 /test/ILLink.Tasks.Tests/ILLink.Tasks.Tests.csproj
parentb209c56ce68ec06673295e5ad557ae7093fe92db (diff)
Expose more options in ILLink.Tasks (#1057)
* Expose more linker options in task LinkSymbols -> '-b' DefaultAction -> '-c' and '-u' CustomSteps -> '--custom-step' * Fix CustomStep argument generation - Add a missing space - Check for empty strings (for non-existent metadata) * Factor Driver to allow context setup without running * Add ILLink.Tasks mocked unit tests * Use Pascal casing for metadata, add testcase * Expose all optimizations on the task * Fix whitespace
Diffstat (limited to 'test/ILLink.Tasks.Tests/ILLink.Tasks.Tests.csproj')
-rw-r--r--test/ILLink.Tasks.Tests/ILLink.Tasks.Tests.csproj18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/ILLink.Tasks.Tests/ILLink.Tasks.Tests.csproj b/test/ILLink.Tasks.Tests/ILLink.Tasks.Tests.csproj
new file mode 100644
index 000000000..44010a535
--- /dev/null
+++ b/test/ILLink.Tasks.Tests/ILLink.Tasks.Tests.csproj
@@ -0,0 +1,18 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>netcoreapp3.0</TargetFramework>
+ <IsPackable>false</IsPackable>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Microsoft.Build.Framework" Version="$(MicrosoftBuildFrameworkVersion)" />
+ <PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildUtilitiesCoreVersion)" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\..\src\ILLink.Tasks\ILLink.Tasks.csproj" />
+ <ProjectReference Include="..\..\src\linker\Mono.Linker.csproj" />
+ </ItemGroup>
+
+</Project>