Skip to content

Commit 4e6026f

Browse files
committed
Rename project files, rebase dependency to NuGet
1 parent 78af4dd commit 4e6026f

25 files changed

+751
-656
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Sender/bin/
2+
Sender/obj/
3+
Receiver/bin/
4+
Receiver/obj/
5+
Connector/bin/
6+
Connector/obj/
7+
8+
ClientLib/bin/
9+
ClientLib/obj/
10+
ClientUnitTests/bin/
11+
ClientUnitTests/obj/
12+
.vs
13+
packages/
File renamed without changes.

dotnetlite/DotNetLite.csproj renamed to ClientLib/ClientLib.csproj

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{6DC6D0F4-85F4-4380-9C49-FF26BC83D000}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>Dotnetlite</RootNamespace>
11-
<AssemblyName>Dotnetlite</AssemblyName>
10+
<RootNamespace>ClientLib</RootNamespace>
11+
<AssemblyName>ClientLib</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
</PropertyGroup>
@@ -36,12 +36,12 @@
3636
</PropertyGroup>
3737
<ItemGroup>
3838
<Reference Include="Amqp.Net, Version=1.2.0.0, Culture=neutral, PublicKeyToken=905a7b1e6458e0c3, processorArchitecture=MSIL">
39-
<SpecificVersion>False</SpecificVersion>
40-
<HintPath>dlls\Amqp.Net.dll</HintPath>
39+
<HintPath>..\packages\AMQPNetLite.1.2.3\lib\net45\Amqp.Net.dll</HintPath>
40+
<Private>True</Private>
4141
</Reference>
4242
<Reference Include="NDesk.Options, Version=0.2.1.0, Culture=neutral, processorArchitecture=MSIL">
43-
<SpecificVersion>False</SpecificVersion>
44-
<HintPath>dlls\NDesk.Options.dll</HintPath>
43+
<HintPath>..\packages\NDesk.Options.0.2.1\lib\NDesk.Options.dll</HintPath>
44+
<Private>True</Private>
4545
</Reference>
4646
<Reference Include="System" />
4747
<Reference Include="System.Core" />
@@ -65,10 +65,7 @@
6565
</ItemGroup>
6666
<ItemGroup>
6767
<None Include="App.config" />
68-
</ItemGroup>
69-
<ItemGroup>
70-
<Content Include="dlls\Amqp.Net.dll" />
71-
<Content Include="dlls\NDesk.Options.dll" />
68+
<None Include="packages.config" />
7269
</ItemGroup>
7370
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7471
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

0 commit comments

Comments
 (0)