Skip to content

Commit 84476de

Browse files
committed
Added AppVeyor config
Updated .gitignore for newer versions of Visual Studio Removed compiled build from repo and copying of new builds - they'll be in releases from now on as full zip files
1 parent c7651af commit 84476de

5 files changed

Lines changed: 31 additions & 3 deletions

File tree

.gitignore

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

173173
# Microsoft Fakes
174174
FakesAssemblies/
175+
/.vs

AuroraTranslationTool.exe

-322 KB
Binary file not shown.

AuroraTranslationTool.sln

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

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.21005.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.1169
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuroraTranslationTool", "AuroraTranslationTool\AuroraTranslationTool.csproj", "{8BBEFD72-5C4D-4ABD-9772-25DE6AA0C6D3}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{01F44549-C6B5-4431-A23A-56CF2FDC8A5C}"
99
ProjectSection(SolutionItems) = preProject
10+
appveyor.yml = appveyor.yml
1011
README.md = README.md
1112
EndProjectSection
1213
EndProject
@@ -24,4 +25,7 @@ Global
2425
GlobalSection(SolutionProperties) = preSolution
2526
HideSolutionNode = FALSE
2627
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {71F7713F-9161-41C7-B0F0-503F52F6FDD3}
30+
EndGlobalSection
2731
EndGlobal

AuroraTranslationTool/AuroraTranslationTool.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@
9090
</ItemGroup>
9191
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
9292
<PropertyGroup>
93-
<PostBuildEvent>copy "$(TargetPath)" "$(SolutionDir)"</PostBuildEvent>
93+
<PostBuildEvent>
94+
</PostBuildEvent>
9495
</PropertyGroup>
9596
<PropertyGroup>
9697
<PreBuildEvent>

appveyor.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2.0.{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+
build:
11+
verbosity: minimal
12+
artifacts:
13+
- path: AuroraTranslationTool\bin\Release\
14+
name: Release
15+
deploy:
16+
- provider: GitHub
17+
tag: v$(APPVEYOR_BUILD_VERSION)
18+
release: Aurora Translation Tool v$(APPVEYOR_BUILD_VERSION)
19+
auth_token:
20+
secure: 1ugGk17lkq2gESnUH82Dt9Mfa1BQT3KUcqbgQHafLlFM9BOAwQMNUlj5h0jNhCwO
21+
artifact: Release
22+
draft: true

0 commit comments

Comments
 (0)