Skip to content

Commit 42e1705

Browse files
committed
Merge pull request #26 from sharwell/PackagingUpdates
Packaging updates (Sandcastle and NuGet)
2 parents aff03bd + 3d62ecd commit 42e1705

3 files changed

Lines changed: 25 additions & 7 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ TestResults
5959
*.shfbproj_*
6060

6161
# Sandcastle Output
62+
docs/Api/
6263
docs/html/
6364

6465
#NuGet
65-
*.nupkg
66+
*.nupkg

src/Documentation/Documentation.shfbproj

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<DisableCodeBlockComponent>False</DisableCodeBlockComponent>
3030
<CppCommentsFixup>False</CppCommentsFixup>
3131
<CleanIntermediates>True</CleanIntermediates>
32-
<SyntaxFilters>CSharp, VisualBasic, CPlusPlus, JavaScript, AspNet</SyntaxFilters>
32+
<SyntaxFilters>CSharp, VisualBasic, CPlusPlus, FSharp</SyntaxFilters>
3333
<SdkLinkTarget>Blank</SdkLinkTarget>
3434
<RootNamespaceContainer>True</RootNamespaceContainer>
3535
<PresentationStyle>VS2010</PresentationStyle>
@@ -42,7 +42,7 @@
4242
<HtmlSdkLinkType>Msdn</HtmlSdkLinkType>
4343
<IncludeFavorites>True</IncludeFavorites>
4444
<BinaryTOC>True</BinaryTOC>
45-
<VisibleItems>Attributes, ExplicitInterfaceImplementations, InheritedMembers, InheritedFrameworkMembers, Internals, Privates, Protected, SealedProtected, InheritedFrameworkPrivateMembers, InheritedFrameworkInternalMembers</VisibleItems>
45+
<VisibleItems>Attributes, ExplicitInterfaceImplementations, InheritedMembers, InheritedFrameworkMembers, Protected, ProtectedInternalAsProtected, SealedProtected</VisibleItems>
4646
<FeedbackEMailAddress>openstack.net%40lists.rackspace.com</FeedbackEMailAddress>
4747
<CopyrightText>
4848
</CopyrightText>
@@ -56,6 +56,13 @@
5656
<Argument Key="logoPlacement" Value="left" />
5757
<Argument Key="logoAlignment" Value="left" />
5858
</TransformComponentArguments>
59+
<ComponentConfigurations>
60+
<ComponentConfig id="IntelliSense Component" enabled="True" xmlns="">
61+
<component id="IntelliSense Component" type="Microsoft.Ddue.Tools.IntelliSenseComponent" assembly="{@SandcastlePath}ProductionTools\BuildComponents.dll">
62+
<output includeNamespaces="false" namespacesFile="Namespaces" folder="{@OutputFolder}\..\Api" />
63+
</component>
64+
</ComponentConfig>
65+
</ComponentConfigurations>
5966
</PropertyGroup>
6067
<!-- There are no properties for these groups. AnyCPU needs to appear in
6168
order for Visual Studio to perform the build. The others are optional
@@ -76,6 +83,13 @@
7683
</PropertyGroup>
7784
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Win32' ">
7885
</PropertyGroup>
86+
<ItemGroup>
87+
<ProjectReference Include="..\corelib\corelib.csproj">
88+
<Name>corelib</Name>
89+
<Project>{7dba11eb-dba7-4d3a-8d42-b5312e74b9c0}</Project>
90+
<Private>True</Private>
91+
</ProjectReference>
92+
</ItemGroup>
7993
<!-- Import the SHFB build targets -->
8094
<Import Project="$(SHFBROOT)\SandcastleHelpFileBuilder.targets" />
8195
</Project>

src/corelib/corelib.nuspec

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0"?>
2-
<package >
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>openstack.net</id>
55
<version>$version$</version>
@@ -9,9 +9,12 @@
99
<licenseUrl>https://github.com/openstacknetsdk/openstack.net/wiki/Copyright</licenseUrl>
1010
<projectUrl>https://github.com/openstacknetsdk/openstack.net</projectUrl>
1111
<requireLicenseAcceptance>true</requireLicenseAcceptance>
12-
<description>openstack.net - An OpenStack SDK for Microsoft >NET</description>
13-
<releaseNotes>https://github.com/openstacknetsdk/openstack.net/wiki/v$version$</releaseNotes>
12+
<description>An OpenStack SDK for Microsoft .NET</description>
13+
<releaseNotes>https://github.com/openstacknetsdk/openstack.net/releases/v$version$</releaseNotes>
1414
<copyright></copyright>
1515
<tags>openstack</tags>
1616
</metadata>
17-
</package>
17+
<files>
18+
<file src="..\..\docs\Api\openstacknet.xml" target="lib\net40"/>
19+
</files>
20+
</package>

0 commit comments

Comments
 (0)