Skip to content

Commit dd31115

Browse files
committed
. t visual-studio-2019 folder is now machine generated by a script
1 parent e3c9432 commit dd31115

5 files changed

Lines changed: 12 additions & 197 deletions

File tree

.github/workflows/build-and-test-visual-studio-solutions.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v1
1717

18+
- name: create project
19+
run: |
20+
create_visual_studio_project.bat
21+
1822
- name: build
1923
run: |
2024
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat"

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,4 +325,7 @@ ASALocalRun/
325325
*.binlog
326326

327327
.DS_Store
328-
.idea/workspace.xml
328+
.idea/
329+
330+
# machine generated folder
331+
visual-studio-2019/

create_visual_studio_project.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
rmdir /s /q visual-studio-2017
2-
mkdir visual-studio-2017
3-
cd visual-studio-2017
4-
cmake -G "Visual Studio 15 2017" ..
1+
rmdir /s /q visual-studio-2019
2+
mkdir visual-studio-2019
3+
cd visual-studio-2019
4+
cmake -G "Visual Studio 16 2019" ..
55
cd ..

visual-studio-2019/StarterProject2019.sln

Lines changed: 0 additions & 31 deletions
This file was deleted.

visual-studio-2019/StarterProject2019.vcxproj

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
 (0)