-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from robianmcd/packages
- Loading branch information
Showing
218 changed files
with
306 additions
and
73,189 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,14 +1,9 @@ | ||
*.suo | ||
MidiShapeShifter/MidiShapeShifter/bin | ||
*.csproj.user | ||
MidiShapeShifter/MidiShapeShifter/obj | ||
MidiShapeShifter/MidiShapeShifterTest/bin | ||
MidiShapeShifter/MidiShapeShifterTest/obj | ||
MidiShapeShifter/MidiShapeShifterInstaller/Release/ | ||
MidiShapeShifter/MidiShapeShifterInstaller/Debug/ | ||
MidiShapeShifter/.vs | ||
|
||
*.bak | ||
/MidiShapeShifter/MidiShapeShifterDeploy/MidiShapeShifterDeploy | ||
|
||
.vs/ | ||
packages/ | ||
bin/ | ||
obj/ | ||
Release/ | ||
Debug/ |
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,4 @@ | ||
[submodule "SDK/ZedGraph"] | ||
path = SDK/ZedGraph | ||
url = https://github.com/aminya/zedgraph/ | ||
branch = midi-shape-shifter |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Target Name="ILRepacker" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'"> | ||
|
||
<ItemGroup> | ||
<InputAssemblies Include="$(OutputPath)\MidiShapeShifter.dll" /> | ||
<InputAssemblies Include="$(OutputPath)\LBIndustrialCtrls.dll" /> | ||
<InputAssemblies Include="$(OutputPath)\NCalc.dll" /> | ||
<InputAssemblies Include="$(OutputPath)\Ninject.dll" /> | ||
<InputAssemblies Include="$(OutputPath)\ZedGraph.dll" /> | ||
<InputAssemblies Include="$(OutputPath)\ZedGraph.WinForms.dll" /> | ||
<!-- | ||
These should be separate assemblies: | ||
<InputAssemblies Include="$(OutputPath)\Jacobi.Vst.Interop.dll" /> | ||
<InputAssemblies Include="$(OutputPath)\Jacobi.Vst.Core.dll" /> | ||
<InputAssemblies Include="$(OutputPath)\Jacobi.Vst.Framework.dll" /> | ||
--> | ||
</ItemGroup> | ||
|
||
<!-- Must be a fully qualified name --> | ||
<ItemGroup> | ||
<DoNotInternalizeAssemblies Include="MidiShapeShifter.dll" /> | ||
</ItemGroup> | ||
|
||
<!-- | ||
Internalize should be set to false so that .Net VST can find the exported types | ||
--> | ||
<ILRepack | ||
Parallel="true" | ||
Internalize="false" | ||
InternalizeExclude="@(DoNotInternalizeAssemblies)" | ||
InputAssemblies="@(InputAssemblies)" | ||
TargetKind="Dll" | ||
ZeroPeKind="true" | ||
DebugInfo="true" | ||
OutputFile="$(OutputPath)\MidiShapeShifter.net.vstdll" | ||
/> | ||
|
||
</Target> | ||
</Project> | ||
<!-- /ILRepack --> |
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.