Skip to content

Commit 6a320c8

Browse files
committed
Misc changes for NuGet package creation and package additions
1 parent ee20305 commit 6a320c8

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@ SSLLWrapper/bin/Debug/
44
SSLLWrapper.ConsoleAppTester/obj/Debug/
55
SSLLWrapper.Tests/obj/Debug/
66
SSLLWrapper.ConsoleAppTester/bin/Debug/
7+
SSLLWrapper.Tests/bin/Debug/
8+
SSLLWrapper/bin/
9+
SSLLWrapper/obj/
10+
SSLLWrapper.Tests/obj/
11+
SSLLWrapper.Tests/bin/
12+
SSLLWrapper.ConsoleAppTester/bin/
13+
SSLLWrapper.ConsoleAppTester/obj/

SSLLWrapper.Tests/SSLLWrapper.Tests.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
<Reference Include="FluentTests.Framework">
4242
<HintPath>..\packages\FluentTests.1.1.1\lib\FluentTests.Framework.dll</HintPath>
4343
</Reference>
44+
<Reference Include="FluentTests.NUnit">
45+
<HintPath>..\packages\FluentTests.NUnit.1.1.2\lib\FluentTests.NUnit.dll</HintPath>
46+
</Reference>
4447
<Reference Include="Moq">
4548
<HintPath>..\packages\Moq.4.2.1409.1722\lib\net40\Moq.dll</HintPath>
4649
</Reference>
@@ -66,6 +69,12 @@
6669
<None Include="app.config" />
6770
<None Include="packages.config" />
6871
</ItemGroup>
72+
<ItemGroup>
73+
<ProjectReference Include="..\SSLLWrapper\SSLLWrapper.csproj">
74+
<Project>{9D2FF62D-01C0-41B0-A3BE-32005365290C}</Project>
75+
<Name>SSLLWrapper</Name>
76+
</ProjectReference>
77+
</ItemGroup>
6978
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7079
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
7180
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

SSLLWrapper/.nuspec

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>..\SSLLWrapper\</id>
5+
<version>1.0.0</version>
6+
<authors>Ashley</authors>
7+
<owners>Ashley</owners>
8+
<licenseUrl>http://github.com/AshleyPoole/SSLLWrapper/blob/master/LICENSE</licenseUrl>
9+
<projectUrl>http://www.ashleypoole.co.uk/ssllwrapper</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>Package description</description>
12+
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
13+
<copyright>Copyright 2014</copyright>
14+
<tags>Tag1 Tag2</tags>
15+
<dependencies>
16+
<dependency id="SampleDependency" version="1.0" />
17+
</dependencies>
18+
</metadata>
19+
</package>

SSLLWrapper/Properties/AssemblyInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("SSLLWrapper")]
9-
[assembly: AssemblyDescription("")]
9+
[assembly: AssemblyDescription(".NET Wrapper For SSL Labs Assessment API's")]
1010
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
11+
[assembly: AssemblyCompany("Ashley Poole")]
1212
[assembly: AssemblyProduct("SSLLWrapper")]
1313
[assembly: AssemblyCopyright("Copyright © 2014")]
1414
[assembly: AssemblyTrademark("")]
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.1")]
36+
[assembly: AssemblyFileVersion("1.0.1")]

0 commit comments

Comments
 (0)