Update to latest Home\repo-template
Rob Mensching committed
Dec 22, 2018 at 08:59 UTC
3535986732926f81dbf026a02d7099887a285411
4 files changed
+15
-1
.editorconfig
+3
@@ -1,4 +1,7 @@
1
# Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
+#
3
+# Do NOT modify this file. Update the canonical version in Home\repo-template\src\.editorconfig
4
+# then update all of the repos.
5
6
root = true
7
appveyor.yml
+6
@@ -1,3 +1,8 @@
1
+# Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
+#
3
+# Do NOT modify this file. Update the canonical version in Home\repo-template\src\appveyor.yml
4
+# then update all of the repos.
5
+
6
image: Visual Studio 2017
7
8
version: 0.0.0.{build}
@@ -17,6 +22,7 @@ pull_requests:
22
nuget:
23
disable_publish_on_pr: true
24
25
+skip_branch_with_pr: true
26
skip_tags: true
27
28
artifacts:
src/Directory.Build.props
+1
-1
@@ -1,7 +1,7 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
<!--
4
- Do NOT modify this file. Update the canonical version in Home\src\Directory.Build.props
4
+ Do NOT modify this file. Update the canonical version in Home\repo-template\src\Directory.Build.props
5
then update all of the repos.
6
-->
7
<Project>
src/Directory.Build.targets
+5
@@ -1,4 +1,9 @@
1
<?xml version="1.0" encoding="utf-8"?>
2
+<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
+<!--
4
+ Do NOT modify this file. Update the canonical version in Home\repo-template\src\Directory.Build.targets
5
+ then update all of the repos.
6
+-->
7
<!--
8
Replace PackageReferences with ProjectReferences when the projects can be found in .sln.
9
See the original here: https://github.com/dotnet/sdk/issues/1151#issuecomment-385133284