Skip to content

Commit 2345dc7

Browse files
committed
Added AppVeyor config
Updated .gitignore for newer versions of Visual Studio
1 parent d542939 commit 2345dc7

3 files changed

Lines changed: 36 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,3 +181,4 @@ UpgradeLog*.htm
181181

182182
# Microsoft Fakes
183183
FakesAssemblies/
184+
/.vs

AuroraLanguagePackCompiler.sln

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.31101.0
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.1169
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuroraLanguagePackCompiler", "AuroraLanguagePackCompiler\AuroraLanguagePackCompiler.csproj", "{59F8ED6C-082C-4F5F-A459-6A921C86566A}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XuiTools", "XuiTools\XuiTools\XuiTools.csproj", "{3FBF0BE8-5A56-47E2-A89E-096E26A86937}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{82F00DEB-CAA0-4862-8A91-4AC3F9F9B693}"
11+
ProjectSection(SolutionItems) = preProject
12+
appveyor.yml = appveyor.yml
13+
EndProjectSection
14+
EndProject
1015
Global
1116
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1217
Debug|Any CPU = Debug|Any CPU
@@ -25,4 +30,7 @@ Global
2530
GlobalSection(SolutionProperties) = preSolution
2631
HideSolutionNode = FALSE
2732
EndGlobalSection
33+
GlobalSection(ExtensibilityGlobals) = postSolution
34+
SolutionGuid = {72EA5020-D332-4456-83AA-2024D50F0C92}
35+
EndGlobalSection
2836
EndGlobal

appveyor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 1.1.{build}
2+
skip_non_tags: true
3+
configuration: Release
4+
assembly_info:
5+
patch: true
6+
file: '**\AssemblyInfo.*'
7+
assembly_version: '{version}'
8+
assembly_file_version: '{version}'
9+
assembly_informational_version: '{version}'
10+
install:
11+
- cmd: git submodule update --init --recursive
12+
build:
13+
project: AuroraLanguagePackCompiler.sln
14+
verbosity: minimal
15+
artifacts:
16+
- path: AuroraLanguagePackCompiler\bin\Release\
17+
name: Release
18+
deploy:
19+
- provider: GitHub
20+
tag: v$(APPVEYOR_BUILD_VERSION)
21+
release: Aurora Language Pack Compiler v$(APPVEYOR_BUILD_VERSION)
22+
auth_token:
23+
secure: 1ugGk17lkq2gESnUH82Dt9Mfa1BQT3KUcqbgQHafLlFM9BOAwQMNUlj5h0jNhCwO
24+
artifact: Release
25+
draft: true

0 commit comments

Comments
 (0)