Skip to content

Commit

Permalink
Include XML documentation in the nuget
Browse files Browse the repository at this point in the history
Fix Signing issue
Update nuget spec version
  • Loading branch information
Ninputer committed Aug 8, 2015
1 parent 0253ee3 commit 5269261
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>VBF.Compilers.Common</id>
<version>1.0.1</version>
<version>1.0.3</version>
<title>VBF Compilers Common Components</title>
<authors>Fan Shi</authors>
<owners>Fan Shi</owners>
Expand All @@ -20,4 +20,8 @@
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.0" />
</frameworkAssemblies>
</metadata>
<files>
<file src="..\..\bin\VBF.Compilers.Common.dll" target="lib\Net45" />
<file src="..\..\bin\VBF.Compilers.Common.XML" target="lib\Net45" />
</files>
</package>
10 changes: 7 additions & 3 deletions packagespecs/VBF.Compilers.Parsers/VBF.Compilers.Parsers.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>VBF.Compilers.Parsers</id>
<version>1.0.1</version>
<version>1.0.3</version>
<title>VBF Compilers Library for Parsers</title>
<authors>Fan Shi</authors>
<owners>Fan Shi</owners>
Expand All @@ -15,12 +15,16 @@
<tags>VBF Compiler parser yacc antlr LR GLR</tags>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="VBF.Compilers.Common" version="1.0.1" />
<dependency id="VBF.Compilers.Scanners" version="1.0.1" />
<dependency id="VBF.Compilers.Common" version="1.0.3" />
<dependency id="VBF.Compilers.Scanners" version="1.0.3" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.0" />
</frameworkAssemblies>
</metadata>
<files>
<file src="..\..\bin\VBF.Compilers.Parsers.dll" target="lib\Net45" />
<file src="..\..\bin\VBF.Compilers.Parsers.XML" target="lib\Net45" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>VBF.Compilers.Scanners</id>
<version>1.0.1</version>
<version>1.0.3</version>
<title>VBF Compilers Library for Scanners</title>
<authors>Fan Shi</authors>
<owners>Fan Shi</owners>
Expand All @@ -15,11 +15,15 @@
<tags>VBF Compiler scanner lexer lex tokenizer</tags>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="VBF.Compilers.Common" version="1.0.1" />
<dependency id="VBF.Compilers.Common" version="1.0.3" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.0" />
</frameworkAssemblies>
</metadata>
<files>
<file src="..\..\bin\VBF.Compilers.Scanners.dll" target="lib\Net45" />
<file src="..\..\bin\VBF.Compilers.Scanners.XML" target="lib\Net45" />
</files>
</package>
9 changes: 9 additions & 0 deletions resign.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
sn -R .\bin\VBF.Compilers.Common.dll .\bin\VBF.snk
sn -R .\bin\VBF.Compilers.Scanners.dll .\bin\VBF.snk
sn -R .\bin\VBF.Compilers.Parsers.dll .\bin\VBF.snk

REM verify signing

sn -vf .\bin\VBF.Compilers.Common.dll
sn -vf .\bin\VBF.Compilers.Scanners.dll
sn -vf .\bin\VBF.Compilers.Parsers.dll
1 change: 1 addition & 0 deletions src/Compilers/Compilers.Common/Compilers.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>..\..\..\bin\VBF.Compilers.Common.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
Expand Down
1 change: 1 addition & 0 deletions src/Compilers/Compilers.Parsers/Compilers.Parsers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>..\..\..\bin\VBF.Compilers.Parsers.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
Expand Down
1 change: 1 addition & 0 deletions src/Compilers/Compilers.Scanners/Compilers.Scanners.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DocumentationFile>..\..\..\bin\VBF.Compilers.Scanners.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
Expand Down

0 comments on commit 5269261

Please sign in to comment.