Skip to content

Commit 15216ca

Browse files
committed
Appveyor: disable VS2013 build
1 parent 5b01a3d commit 15216ca

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1102,6 +1102,7 @@ Version history
11021102
2019-04-20 0.49.1
11031103
* fixed reading settings from VC projects in VS2017
11041104
* fixed determining versions from dmd versions no longer supporting -gc
1105+
* fixed reading import path from newer LDC versions
11051106
* added support for VS2019 Update 16.1
11061107
* dparser:
11071108
- jump to original definition if it is not renamed or the caret is on the import

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ environment:
2121
- os: Visual Studio 2015
2222
VS: 14
2323
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
24-
- os: Visual Studio 2013
25-
VS: 12
26-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
24+
# - os: Visual Studio 2013
25+
# VS: 12
26+
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
2727

2828
# cache relative to C:\projects\visuald
2929
cache:

msbuild/ImportAfter/general_d.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33

44
<ItemGroup Condition="'$(UseDefaultPropertyPageSchemas)' != 'false'">
5-
<PropertyPageSchema Condition="'$(ConfigurationType)' != 'Utility'" Include="$(VisualDMSBuildDir)\general_d.$(MSBuildVersion_Major).0.xml">
5+
<PropertyPageSchema Condition="'$(ConfigurationType)' != 'Utility' and Exists('$(VisualDMSBuildDir)\general_d.$(MSBuildVersion_Major).0.xml')" Include="$(VisualDMSBuildDir)\general_d.$(MSBuildVersion_Major).0.xml">
66
<Context>Project</Context>
77
</PropertyPageSchema>
88
</ItemGroup>

visuald_vs10.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ EndProject
115115
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ImportBefore", "ImportBefore", "{6C5387E8-CF11-443A-88BD-CA6DCA80E755}"
116116
ProjectSection(SolutionItems) = preProject
117117
msbuild\ImportBefore\d.props = msbuild\ImportBefore\d.props
118-
msbuild\ImportBefore\d.targets = msbuild\ImportBefore\d.targets
119118
EndProjectSection
120119
EndProject
121120
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Default", "Default", "{AB498803-493D-4FB4-9FB1-9CEF0E628CE9}"

0 commit comments

Comments
 (0)