moving several dll to nuget (#3286)

This commit is contained in:
samuraiGH 2025-06-22 16:58:45 +03:00 committed by GitHub
parent 6ac8998e00
commit 11b946805a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 25 additions and 19 deletions

11
.gitignore vendored
View file

@ -87,15 +87,20 @@
/bin/ICSharpCode.SharpDevelop.dll /bin/ICSharpCode.SharpDevelop.dll
/bin/ICSharpCode.SharpDevelop.Dom.dll /bin/ICSharpCode.SharpDevelop.Dom.dll
/bin/ICSharpCode.SharpDevelop.Widgets.dll /bin/ICSharpCode.SharpDevelop.Widgets.dll
/bin/ICSharpCode.SharpZipLib.dll
/bin/ICSharpCode.TextEditor.dll /bin/ICSharpCode.TextEditor.dll
/bin/ICSharpCode.TextEditorLinux.dll /bin/ICSharpCode.TextEditorLinux.dll
/bin/Mono.Cecil.dll
/bin/SharpDisasm.dll
/bin/WeifenLuo.WinFormsUI.Docking.dll /bin/WeifenLuo.WinFormsUI.Docking.dll
/bin/WeifenLuo.WinFormsUI.DockingLinux.dll /bin/WeifenLuo.WinFormsUI.DockingLinux.dll
/bin/WeifenLuo.WinFormsUI.Docking.ThemeVS2005.dll /bin/WeifenLuo.WinFormsUI.Docking.ThemeVS2005.dll
/bin/WeifenLuo.WinFormsUI.Docking.ThemeVS2005Linux.dll /bin/WeifenLuo.WinFormsUI.Docking.ThemeVS2005Linux.dll
# from nuget
/bin/ICSharpCode.SharpZipLib.dll
/bin/SharpDisasm.dll
/bin/Mono.Cecil.dll
/bin/Mono.Cecil.Mdb.dll
/bin/Mono.Cecil.Pdb.dll
/bin/Mono.Cecil.Rocks.dll
/bin/Microsoft.Bcl.HashCode.dll /bin/Microsoft.Bcl.HashCode.dll
/bin/System.Buffers.dll /bin/System.Buffers.dll
/bin/System.Collections.Immutable.dll /bin/System.Collections.Immutable.dll

Binary file not shown.

View file

@ -27,10 +27,14 @@
File "..\bin\ICSharpCode.SharpDevelop.Widgets.dll" File "..\bin\ICSharpCode.SharpDevelop.Widgets.dll"
File "..\bin\ControlLibrary.sdcl" File "..\bin\ControlLibrary.sdcl"
File "..\bin\AvalonDock.dll" File "..\bin\AvalonDock.dll"
File "..\bin\Mono.Cecil.dll"
File "..\bin\TeacherControlPlugin.dll" File "..\bin\TeacherControlPlugin.dll"
File "..\bin\LambdaAnySynToSemConverter.dll" File "..\bin\LambdaAnySynToSemConverter.dll"
File "..\bin\SharpDisasm.dll"
File "..\bin\Mono.Cecil.dll"
File "..\bin\Mono.Cecil.Mdb.dll"
File "..\bin\Mono.Cecil.Pdb.dll"
File "..\bin\Mono.Cecil.Rocks.dll"
File "..\bin\Microsoft.Bcl.HashCode.dll" File "..\bin\Microsoft.Bcl.HashCode.dll"
File "..\bin\System.Buffers.dll" File "..\bin\System.Buffers.dll"
File "..\bin\System.Collections.Immutable.dll" File "..\bin\System.Collections.Immutable.dll"

View file

@ -7,7 +7,6 @@
File "..\bin\PascalABCNET.exe" File "..\bin\PascalABCNET.exe"
;File "..\bin\PascalABCNET.exe.manifest" ;File "..\bin\PascalABCNET.exe.manifest"
File "..\bin\Debugger.Core.dll" File "..\bin\Debugger.Core.dll"
File "..\bin\SharpDisasm.dll"
File "..\bin\PascalABCNET.chm" File "..\bin\PascalABCNET.chm"
File "..\bin\CodeCompletion.dll" File "..\bin\CodeCompletion.dll"
File "..\bin\WeifenLuo.WinFormsUI.Docking.dll" File "..\bin\WeifenLuo.WinFormsUI.Docking.dll"

View file

@ -74,10 +74,7 @@
<Reference Include="ICSharpCode.SharpDevelop.Widgets"> <Reference Include="ICSharpCode.SharpDevelop.Widgets">
<HintPath>..\..\..\..\..\Libs\ICSharpCode.SharpDevelop.Widgets.dll</HintPath> <HintPath>..\..\..\..\..\Libs\ICSharpCode.SharpDevelop.Widgets.dll</HintPath>
</Reference> </Reference>
<Reference Include="Mono.Cecil">
<HintPath>..\..\..\..\..\Libs\Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="PresentationFramework.Aero" /> <Reference Include="PresentationFramework.Aero" />
<Reference Include="System.ServiceModel" /> <Reference Include="System.ServiceModel" />
<Reference Include="System.Web.Services" /> <Reference Include="System.Web.Services" />
@ -85,6 +82,10 @@
<Reference Include="Microsoft.Build" /> <Reference Include="Microsoft.Build" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<PackageReference Include="Mono.Cecil" Version="0.9.5" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\Core\Project\ICSharpCode.Core.csproj" /> <ProjectReference Include="..\..\Core\Project\ICSharpCode.Core.csproj" />
<ProjectReference Include="..\..\ICSharpCode.Core.Presentation\ICSharpCode.Core.Presentation.csproj" /> <ProjectReference Include="..\..\ICSharpCode.Core.Presentation\ICSharpCode.Core.Presentation.csproj" />

View file

@ -697,6 +697,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" /> <PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
<PackageReference Include="SharpDisasm" Version="1.0.2" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
@ -718,9 +719,6 @@
<Reference Include="Microsoft.Build.Framework" /> <Reference Include="Microsoft.Build.Framework" />
<Reference Include="PresentationCore" /> <Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" /> <Reference Include="PresentationFramework" />
<Reference Include="SharpDisasm">
<HintPath>..\Libraries\SharpDisasm.dll</HintPath>
</Reference>
<Reference Include="System.Deployment" /> <Reference Include="System.Deployment" />
<Reference Include="System.Design" /> <Reference Include="System.Design" />
<Reference Include="System.Drawing" /> <Reference Include="System.Drawing" />

View file

@ -819,9 +819,6 @@
<Reference Include="Microsoft.Build.Engine" /> <Reference Include="Microsoft.Build.Engine" />
<Reference Include="Microsoft.Build.Framework" /> <Reference Include="Microsoft.Build.Framework" />
<Reference Include="Microsoft.Build.Tasks" /> <Reference Include="Microsoft.Build.Tasks" />
<Reference Include="SharpDisasm">
<HintPath>..\Libraries\SharpDisasm.dll</HintPath>
</Reference>
<Reference Include="System.Drawing" /> <Reference Include="System.Drawing" />
<Reference Include="System.Messaging" /> <Reference Include="System.Messaging" />
<Reference Include="System.Design" /> <Reference Include="System.Design" />
@ -844,5 +841,6 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" /> <PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
<PackageReference Include="SharpDisasm" Version="1.0.2" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View file

@ -23,14 +23,12 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Reference Include="ICSharpCode.SharpZipLib, Version=0.85.1.271, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<HintPath>..\..\Libraries\ICSharpCode.SharpZipLib.dll</HintPath>
</Reference>
<Reference Include="System.Drawing" /> <Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" /> <Reference Include="System.Windows.Forms" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="System.Resources.Extensions" Version="9.0.0" /> <PackageReference Include="System.Resources.Extensions" Version="9.0.0" />
<PackageReference Include="SharpZipLib" Version="0.86.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View file

@ -21,7 +21,6 @@ copy bin\ICSharpCode.SharpDevelop.dll Release\PascalABCNETLinux\ICSharpCode.Shar
copy bin\ICSharpCode.SharpDevelop.Dom.dll Release\PascalABCNETLinux\ICSharpCode.SharpDevelop.Dom.dll copy bin\ICSharpCode.SharpDevelop.Dom.dll Release\PascalABCNETLinux\ICSharpCode.SharpDevelop.Dom.dll
copy bin\ICSharpCode.TextEditorLinux.dll Release\PascalABCNETLinux\ICSharpCode.TextEditorLinux.dll copy bin\ICSharpCode.TextEditorLinux.dll Release\PascalABCNETLinux\ICSharpCode.TextEditorLinux.dll
copy bin\Localization.dll Release\PascalABCNETLinux\Localization.dll copy bin\Localization.dll Release\PascalABCNETLinux\Localization.dll
copy bin\Mono.Cecil.dll Release\PascalABCNETLinux\Mono.Cecil.dll
copy bin\mono_pabcIDE.bat Release\PascalABCNETLinux\mono_pabcIDE.bat copy bin\mono_pabcIDE.bat Release\PascalABCNETLinux\mono_pabcIDE.bat
copy bin\mono_pabcnetc.bat Release\PascalABCNETLinux\mono_pabcnetc.bat copy bin\mono_pabcnetc.bat Release\PascalABCNETLinux\mono_pabcnetc.bat
copy bin\NETGenerator.dll Release\PascalABCNETLinux\NETGenerator.dll copy bin\NETGenerator.dll Release\PascalABCNETLinux\NETGenerator.dll
@ -30,6 +29,10 @@ copy bin\LanguageIntegrator.dll Release\PascalABCNETLinux\LanguageIntegrator.dll
copy bin\StringConstants.dll Release\PascalABCNETLinux\StringConstants.dll copy bin\StringConstants.dll Release\PascalABCNETLinux\StringConstants.dll
copy bin\SharpDisasm.dll Release\SharpDisasm.dll copy bin\SharpDisasm.dll Release\SharpDisasm.dll
copy bin\Mono.Cecil.dll Release\PascalABCNETLinux\Mono.Cecil.dll
copy bin\Mono.Cecil.Mdb.dll Release\Mono.Cecil.Mdb.dll
copy bin\Mono.Cecil.Pdb.dll Release\Mono.Cecil.Pdb.dll
copy bin\Mono.Cecil.Rocks.dll Release\Mono.Cecil.Rocks.dll
copy bin\Microsoft.Bcl.HashCode.dll Release\PascalABCNETLinux\Microsoft.Bcl.HashCode.dll copy bin\Microsoft.Bcl.HashCode.dll Release\PascalABCNETLinux\Microsoft.Bcl.HashCode.dll
copy bin\System.Buffers.dll Release\PascalABCNETLinux\System.Buffers.dll copy bin\System.Buffers.dll Release\PascalABCNETLinux\System.Buffers.dll
copy bin\System.Collections.Immutable.dll Release\PascalABCNETLinux\System.Collections.Immutable.dll copy bin\System.Collections.Immutable.dll Release\PascalABCNETLinux\System.Collections.Immutable.dll