forked from microsoft/Azure-Kinect-Sensor-SDK
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
C# Build Integration (microsoft#316)
* Adding the C# build to the Azure Pipeline. * Standardizing names of projects and aligning project and folder names. * Removing the C# unit test's runtime dependency on the Binary folder.
- Loading branch information
Derek M
authored
May 3, 2019
1 parent
a4b7f05
commit 5f56c1e
Showing
30 changed files
with
258 additions
and
124 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
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
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
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<K4aBinaryDirectory>@PROJECT_BINARY_DIR@</K4aBinaryDirectory> | ||
</PropertyGroup> | ||
<K4aGeneratorSourcesDirectory>@PROJECT_BINARY_DIR@/src</K4aGeneratorSourcesDirectory> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)' == 'Debug'"> | ||
<K4aBinaryDirectory>@K4A_BINARY_DIR_DEBUG@</K4aBinaryDirectory> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)' == 'Release'"> | ||
<K4aBinaryDirectory>@K4A_BINARY_DIR_RELEASE@</K4aBinaryDirectory> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.