Changes
Page history
Update how to setup a windows build with visual studio
authored
Sep 02, 2019
by
Kuppe, Christian
Hide whitespace changes
Inline
Side-by-side
how-to-setup-a-windows-build-with-visual-studio.md
View page @
bf3fb707
...
@@ -2,23 +2,23 @@
...
@@ -2,23 +2,23 @@
###### Clone or check-out gitlab: This can be done with Visual Studio (optional):
###### Clone or check-out gitlab: This can be done with Visual Studio (optional):
1. Start Visual Studio, go to Team Explorer and go to git:
1.
Start Visual Studio, go to Team Explorer and go to git:
2. New > Repository > Locale git-repository > clone gitlab repository, you can do it with https://gitlab.com/rootmodels/OpenSimRoot.git
2.
New > Repository > Locale git-repository > clone gitlab repository, you can do it with https://gitlab.com/rootmodels/OpenSimRoot.git
###### Create new Visual Studio project with the gitlab code:
###### Create new Visual Studio project with the gitlab code:
1. In the Visual Studio main menu select: New > From existing code (last entry)
1.
In the Visual Studio main menu select: New > From existing code (last entry)
2. Select Visual C++
2.
Select Visual C++
3. choose folder with existing OpenSimRoot code and name your Visual Studio project
3.
choose folder with existing OpenSimRoot code and name your Visual Studio project
4. Next > Windows application > finish
4.
Next > Windows application > finish
###### Build a Windows exe:
###### Build a Windows exe:
1. Choose build option x64, Release (optional)
1.
Choose build option x64, Release (optional)
2. Compile / build new
2.
Compile / build new
3. The .exe file can be found in the project folder and has the name you gave at (3) above, while creating the project.
3.
The .exe file can be found in the project folder and has the name you gave at (3) above, while creating the project.
### Known issues with *Visual Studio* __2019__ Community:
### Known issues with *Visual Studio* __2019__ Community:
...
@@ -27,9 +27,9 @@
...
@@ -27,9 +27,9 @@
###### Solve XSD error:
###### Solve XSD error:
1. Start Visual Studio 2019 Developer Command Prompt as __Admin__. (Type "dev" in the search box,...)
1.
Start Visual Studio 2019 Developer Command Prompt as __Admin__. (Type "dev" in the search box,...)
2. XSD depends on the CodeProvider. We install the CodeProvider dll in the GAC. I typed (in the command window):
2.
XSD depends on the CodeProvider. We install the CodeProvider dll in the GAC. I typed (in the command window):
"C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\gacutil.exe" -i "%DevEnvDir%\PublicAssemblies\CppCodeProvider.dll"
"C:
\P
rogram Files (x86)
\M
icrosoft SDKs
\W
indows
\v
10.0A
\b
in
\N
ETFX 4.8 Tools
\g
acutil.exe" -i "%DevEnvDir%
\P
ublicAssemblies
\C
ppCodeProvider.dll"
Your path to gacutil.exe can be different. The second part is the important one.
Your path to gacutil.exe can be different. The second part is the important one.
...
...
...
...