forked from CosmosOS/XSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
To debug this assembly use the VS Dev Hive. | ||
|
||
To do that, set the following options in the project properties. | ||
It requires a full path, but it is stored in the project .user file | ||
so it will not interfere with others who do not have VS at the same location. | ||
|
||
Alternatively, you can open XSharp.VS.csproj.user and modify it to include the | ||
property group: | ||
|
||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectView>ProjectFiles</ProjectView> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> | ||
<StartAction>Program</StartAction> | ||
<StartProgram>$(DevEnvDir)devenv.exe</StartProgram> | ||
<StartArguments>/rootSuffix Exp</StartArguments> | ||
</PropertyGroup> | ||
</Project> | ||
|
||
$(DevEnvDir) is not accepted by the VS UI, so if you use the project properties dialog | ||
enter the full path to Visual Studio. Also if changes are made using project properties, | ||
it will expand $(DevEnvDir) it to a full path and save it. |