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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-09-20 18:27:15 +0300
committerGitHub <noreply@github.com>2019-09-20 18:27:15 +0300
commit6bc988b0870b7d4d56a73c13b45fe5158f81c64d (patch)
tree99320004e4c0526ad1b100b0444b3bf16485d18b /eng/empty.csproj
parent3757a7296c9cd700f9eceb8a9460a2de44e7cc01 (diff)
[netcore] Move to new arcade post build using yaml stages (#16966)
This is required by the newer arcade builds. We can simplify our scripts since we no longer need the special publishwitharcade.proj. Added copyright and license to the .nuspecs since the new arcade validation now verifies this against a set of Microsoft policies. We also need to make the .nupkg pre-release by appending the -preview suffix as stable versions are not permitted in non-stable feeds.
Diffstat (limited to 'eng/empty.csproj')
-rw-r--r--eng/empty.csproj15
1 files changed, 15 insertions, 0 deletions
diff --git a/eng/empty.csproj b/eng/empty.csproj
new file mode 100644
index 00000000000..0bd280da02f
--- /dev/null
+++ b/eng/empty.csproj
@@ -0,0 +1,15 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <!-- This project exists purely to work around Arcade
+ behavior. Arcade knows how to restore tasks needed for
+ publishing to blob feeds, but it requires a project file that
+ imports nuget restore targets to be specified for this to
+ work. See details in
+ https://github.com/dotnet/arcade/commit/f657be5cb7cd4920334dd9162173b131211a1e17#r31728598.
+ -->
+
+ <PropertyGroup>
+ <TargetFramework>netcoreapp2.0</TargetFramework>
+ </PropertyGroup>
+
+</Project>