-
Notifications
You must be signed in to change notification settings - Fork 932
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NH-3990 - Upgrade to VS2017 project structure
- use dotnet to build solution - fix typo in TestEmbeddedConfig.cfg.xml name - fix extension of EntityWithFilters.hbm.xml
- Loading branch information
Showing
20 changed files
with
164 additions
and
6,263 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<NUnitProject> | ||
<Settings activeconfig="Debug" processModel="Multiple" /> | ||
<Config name="Debug" binpathtype="Auto" runtimeFramework="net-4.0"> | ||
<assembly path="src\NHibernate.TestDatabaseSetup\bin\Debug\NHibernate.TestDatabaseSetup.dll" /> | ||
<assembly path="src\NHibernate.Test\bin\Debug-2.0\NHibernate.Test.dll" /> | ||
<assembly path="src\NHibernate.TestDatabaseSetup\bin\Debug\net461\NHibernate.TestDatabaseSetup.dll" /> | ||
<assembly path="src\NHibernate.Test\bin\Debug\net461\NHibernate.Test.dll" /> | ||
<assembly path="src\NHibernate.Test.VisualBasic\bin\Debug\NHibernate.Test.VisualBasic.dll" /> | ||
</Config> | ||
<Config name="Release" binpathtype="Auto" runtimeFramework="net-4.0"> | ||
<assembly path="src\NHibernate.TestDatabaseSetup\bin\Release\NHibernate.TestDatabaseSetup.dll" /> | ||
<assembly path="src\NHibernate.Test\bin\Release-2.0\NHibernate.Test.dll" /> | ||
<assembly path="src\NHibernate.TestDatabaseSetup\bin\Release\net461\NHibernate.TestDatabaseSetup.dll" /> | ||
<assembly path="src\NHibernate.Test\bin\Release\net461\NHibernate.Test.dll" /> | ||
<assembly path="src\NHibernate.Test.VisualBasic\bin\Release\NHibernate.Test.VisualBasic.dll" /> | ||
</Config> | ||
</NUnitProject> | ||
</NUnitProject> |
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,13 +1 @@ | ||
@echo off | ||
set pre=Microsoft.VisualStudio.Product. | ||
set ids=%pre%Community %pre%Professional %pre%Enterprise %pre%BuildTools | ||
|
||
for /f "usebackq tokens=1* delims=: " %%i in (`%~dp0\vswhere.1.0.58\tools\vswhere.exe -latest -products %ids% -requires Microsoft.Component.MSBuild`) do ( | ||
if /i "%%i"=="installationPath" set InstallDir=%%j | ||
) | ||
|
||
if exist "%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" ( | ||
"%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" %* | ||
) else ( | ||
exit /b -1 | ||
) | ||
dotnet msbuild %* |
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
Oops, something went wrong.