Skip to content

Commit fca9238

Browse files
committed
Removing problematic submodule and adding them as pre-built binaries.
1 parent 455ec0b commit fca9238

9 files changed

+9
-22
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ LRdata.zip
22
PythLR/PythLR/bin/
33
PythLR/PythLR/obj/
44
PythLR/.vs/
5+
PythLR/packages/

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
[submodule "RawDiskLib"]
2-
path = RawDiskLib
3-
url = https://github.com/LordMike/RawDiskLib.git

Library/DeviceIOControlLib.dll

33 KB
Binary file not shown.

Library/DeviceIOControlLib.pdb

53.5 KB
Binary file not shown.

Library/RawDiskLib.dll

13 KB
Binary file not shown.

Library/RawDiskLib.pdb

33.5 KB
Binary file not shown.

PythLR/PythLR.sln

-12
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PythLR", "PythLR\PythLR.csproj", "{87AD38A9-7D56-45E5-B131-64534FAE0435}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RawDiskLib", "..\RawDiskLib\RawDiskLib\RawDiskLib.csproj", "{5E9AA56E-6428-4DED-97A2-C51C51A6EA89}"
9-
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeviceIOControlLib", "..\RawDiskLib\DeviceIOControlLib\DeviceIOControlLib\DeviceIOControlLib.csproj", "{303F50C6-4EBB-45C5-BFEA-F5F39CAF0410}"
11-
EndProject
128
Global
139
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1410
Debug|Any CPU = Debug|Any CPU
@@ -19,14 +15,6 @@ Global
1915
{87AD38A9-7D56-45E5-B131-64534FAE0435}.Debug|Any CPU.Build.0 = Debug|Any CPU
2016
{87AD38A9-7D56-45E5-B131-64534FAE0435}.Release|Any CPU.ActiveCfg = Release|Any CPU
2117
{87AD38A9-7D56-45E5-B131-64534FAE0435}.Release|Any CPU.Build.0 = Release|Any CPU
22-
{5E9AA56E-6428-4DED-97A2-C51C51A6EA89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23-
{5E9AA56E-6428-4DED-97A2-C51C51A6EA89}.Debug|Any CPU.Build.0 = Debug|Any CPU
24-
{5E9AA56E-6428-4DED-97A2-C51C51A6EA89}.Release|Any CPU.ActiveCfg = Release|Any CPU
25-
{5E9AA56E-6428-4DED-97A2-C51C51A6EA89}.Release|Any CPU.Build.0 = Release|Any CPU
26-
{303F50C6-4EBB-45C5-BFEA-F5F39CAF0410}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{303F50C6-4EBB-45C5-BFEA-F5F39CAF0410}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{303F50C6-4EBB-45C5-BFEA-F5F39CAF0410}.Release|Any CPU.ActiveCfg = Release|Any CPU
29-
{303F50C6-4EBB-45C5-BFEA-F5F39CAF0410}.Release|Any CPU.Build.0 = Release|Any CPU
3018
EndGlobalSection
3119
GlobalSection(SolutionProperties) = preSolution
3220
HideSolutionNode = FALSE

PythLR/PythLR/PythLR.csproj

+8-6
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
<ApplicationManifest>app.manifest</ApplicationManifest>
3737
</PropertyGroup>
3838
<ItemGroup>
39+
<Reference Include="DeviceIOControlLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
40+
<SpecificVersion>False</SpecificVersion>
41+
<HintPath>..\..\Library\DeviceIOControlLib.dll</HintPath>
42+
</Reference>
3943
<Reference Include="DiscUtils, Version=0.11.0.0, Culture=neutral, processorArchitecture=MSIL">
4044
<HintPath>..\packages\Discutils.0.11.0.2\lib\net40\DiscUtils.dll</HintPath>
4145
<Private>True</Private>
@@ -44,6 +48,10 @@
4448
<HintPath>..\packages\Discutils.0.11.0.2\lib\net40\DiscUtils.Common.dll</HintPath>
4549
<Private>True</Private>
4650
</Reference>
51+
<Reference Include="RawDiskLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
52+
<SpecificVersion>False</SpecificVersion>
53+
<HintPath>..\..\Library\RawDiskLib.dll</HintPath>
54+
</Reference>
4755
<Reference Include="System" />
4856
<Reference Include="System.Core" />
4957
<Reference Include="System.IO.Compression" />
@@ -63,12 +71,6 @@
6371
<None Include="app.manifest" />
6472
<None Include="packages.config" />
6573
</ItemGroup>
66-
<ItemGroup>
67-
<ProjectReference Include="..\..\RawDiskLib\RawDiskLib\RawDiskLib.csproj">
68-
<Project>{5e9aa56e-6428-4ded-97a2-c51c51a6ea89}</Project>
69-
<Name>RawDiskLib</Name>
70-
</ProjectReference>
71-
</ItemGroup>
7274
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7375
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7476
Other similar extension points exist, see Microsoft.Common.targets.

RawDiskLib

-1
This file was deleted.

0 commit comments

Comments
 (0)