-
Notifications
You must be signed in to change notification settings - Fork 11
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
152 changed files
with
1,070 additions
and
923 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 |
---|---|---|
|
@@ -275,3 +275,5 @@ ModelManifest.xml | |
!NCDK/x86/libinchi.dll | ||
!NCDK/x64/libinchi.dll | ||
!BuildAll.bat | ||
Test.sln | ||
Test/ |
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,56 +1,75 @@ | ||
pushd NCDK | ||
call :BuildProject NCDK | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
pushd NCDK.Math | ||
dotnet add package MathNet.Numerics.Signed | ||
dotnet restore | ||
call :BuildProject NCDK yes | ||
call :BuildProject NCDK.Math | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
pushd NCDK.Tests | ||
call :BuildNeGet NCDK | ||
if errorlevel 1 goto :ERROREND | ||
pushd NCDKTests | ||
call :BuildProject NCDKTests | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
|
||
pushd NCDK.RDF | ||
dotnet add package dotNetRDF | ||
dotnet restore | ||
call :BuildProject NCDK.RDF | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
pushd NCDK.RDFTests | ||
call :BuildProject NCDK.RDFTests | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
|
||
pushd NCDK.Legacy | ||
call :BuildProject NCDK.Legacy | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
pushd NCDK.LegacyTests | ||
call :BuildProject NCDK.LegacyTests | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
|
||
pushd NCDK.Display | ||
call :BuildProject NCDK.Display yes | ||
call :BuildProject NCDK.Display | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
call :BuildNeGet NCDK.Display | ||
if errorlevel 1 goto :ERROREND | ||
pushd NCDK.DisplayTests | ||
call :BuildProject NCDK.DisplayTests | ||
if errorlevel 1 goto :ERROREND | ||
popd | ||
|
||
goto END | ||
goto :END | ||
|
||
:BuildProject | ||
|
||
set ProjectName=%1 | ||
set NuGetOption=%2 | ||
if "%ProjectName%" == "" exit 1 | ||
if "%NuGetOption%" == "yes" set NuGetOption=%1 | ||
MSBuild "%ProjectName%.csproj" /t:Build /p:Configuration=Release | ||
if errorlevel 1 exit /b 1 | ||
set ProjectName= | ||
exit /b | ||
|
||
:BuildNeGet | ||
set NuGetOption=%1 | ||
if "%NuGetOption%" == "" goto SkipNuGet | ||
nuget pack "%NuGetOption%.nuspec" -Prop Configuration=Release -IncludeReferencedProjects | ||
if errorlevel 1 exit /b 1 | ||
if "%MyNuGetDir%" neq "" ( | ||
xcopy /D /Y "*.nupkg" "%MyNuGetDir%" | ||
del /Q "*.nupkg" | ||
) | ||
:SkipNuGet | ||
|
||
set ProjectName= | ||
set NuGetOption= | ||
|
||
exit /b | ||
|
||
:ERROREND | ||
|
||
exit /b 1 | ||
|
||
:END |
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
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,7 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="CommonServiceLocator" version="2.0.5" targetFramework="net461" /> | ||
<package id="Prism.Core" version="7.2.0.1422" targetFramework="net461" /> | ||
<package id="Prism.Wpf" version="7.2.0.1422" targetFramework="net461" /> | ||
<package id="CommonServiceLocator" version="2.0.6" targetFramework="net461" /> | ||
<package id="Microsoft.Xaml.Behaviors.Wpf" version="1.1.31" targetFramework="net461" /> | ||
<package id="Prism.Core" version="8.0.0.1909" targetFramework="net461" /> | ||
<package id="Prism.Wpf" version="8.0.0.1909" targetFramework="net461" /> | ||
<package id="System.ValueTuple" version="4.5.0" targetFramework="net461" /> | ||
</packages> |
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
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.