Skip to content

Commit d1f3772

Browse files
adrianstevensctacke
authored andcommitted
Meadow.UsbLib refactoring
1 parent 77079ef commit d1f3772

File tree

5 files changed

+26
-13
lines changed

5 files changed

+26
-13
lines changed

Source/v2/Meadow.CLI.v2.sln

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
32
# Visual Studio Version 17
43
VisualStudioVersion = 17.4.33213.308
@@ -27,7 +26,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Meadow.UsbLibClassic", "Mea
2726
EndProject
2827
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Meadow.CLI.Core", "Meadow.CLI.Core\Meadow.CLI.Core.csproj", "{677B1C15-8936-4807-8A4F-4F5219BBDB7C}"
2928
EndProject
30-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Meadow.Cloud.Client", "Meadow.Cloud.Client\Meadow.Cloud.Client.csproj", "{A71A3C98-2B11-46FE-AB7A-EAD9271862AA}"
29+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Meadow.Cloud.Client", "Meadow.Cloud.Client\Meadow.Cloud.Client.csproj", "{A71A3C98-2B11-46FE-AB7A-EAD9271862AA}"
30+
EndProject
31+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Meadow.UsbLib.Core", "Meadow.UsbLib.Core\Meadow.UsbLib.Core.csproj", "{F02ADBEF-4D52-4A71-9D95-74F45D68B43B}"
3132
EndProject
3233
Global
3334
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -87,6 +88,10 @@ Global
8788
{A71A3C98-2B11-46FE-AB7A-EAD9271862AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
8889
{A71A3C98-2B11-46FE-AB7A-EAD9271862AA}.Release|Any CPU.ActiveCfg = Release|Any CPU
8990
{A71A3C98-2B11-46FE-AB7A-EAD9271862AA}.Release|Any CPU.Build.0 = Release|Any CPU
91+
{F02ADBEF-4D52-4A71-9D95-74F45D68B43B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
92+
{F02ADBEF-4D52-4A71-9D95-74F45D68B43B}.Debug|Any CPU.Build.0 = Debug|Any CPU
93+
{F02ADBEF-4D52-4A71-9D95-74F45D68B43B}.Release|Any CPU.ActiveCfg = Release|Any CPU
94+
{F02ADBEF-4D52-4A71-9D95-74F45D68B43B}.Release|Any CPU.Build.0 = Release|Any CPU
9095
EndGlobalSection
9196
GlobalSection(SolutionProperties) = preSolution
9297
HideSolutionNode = FALSE
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net6.0</TargetFrameworks>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFrameworks>net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9-
<ItemGroup>
10-
<ProjectReference Include="..\Meadow.CLI.Core\Meadow.CLI.Core.csproj" />
11-
</ItemGroup>
12-
139
<ItemGroup>
1410
<PackageReference Include="LibUsbDotNet" Version="3.0.102-alpha" />
1511
</ItemGroup>
1612

13+
<ItemGroup>
14+
<ProjectReference Include="..\Meadow.UsbLib.Core\Meadow.UsbLib.Core.csproj" />
15+
</ItemGroup>
16+
1717
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9-
<ItemGroup>
10-
<ProjectReference Include="..\Meadow.CLI.Core\Meadow.CLI.Core.csproj" />
11-
12-
</ItemGroup>
13-
149
<ItemGroup>
1510
<PackageReference Include="LibUsbDotNet" Version="2.2.29" />
1611
</ItemGroup>
1712

13+
<ItemGroup>
14+
<ProjectReference Include="..\Meadow.UsbLib.Core\Meadow.UsbLib.Core.csproj" />
15+
</ItemGroup>
16+
1817
</Project>

0 commit comments

Comments
 (0)