Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
46feed02
Commit
46feed02
authored
Jul 10, 2015
by
Jan Tattermusch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable building nuget package
parent
94878b30
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
13 deletions
+41
-13
.gitignore
csharp/.gitignore
+1
-13
build_packages.bat
csharp/build_packages.bat
+13
-0
Google.Protobuf.nuspec
csharp/src/ProtocolBuffers/Google.Protobuf.nuspec
+24
-0
ProtocolBuffers.csproj
csharp/src/ProtocolBuffers/ProtocolBuffers.csproj
+3
-0
No files found.
csharp/.gitignore
View file @
46feed02
...
...
@@ -5,23 +5,10 @@ src/AddressBook/bin
src/AddressBook/obj
src/ProtocolBuffers/bin/
src/ProtocolBuffers/obj/
src/ProtocolBuffers/objCF
src/ProtocolBuffers.Serialization/bin/
src/ProtocolBuffers.Serialization/obj/
src/ProtocolBuffers.Test/bin/
src/ProtocolBuffers.Test/obj/
src/ProtocolBuffersLite.Test/bin/
src/ProtocolBuffersLite.Test/obj/
src/ProtoBench/bin/
src/ProtoBench/obj/
src/ProtoDump/bin/
src/ProtoDump/obj/
src/ProtoGen/bin/
src/ProtoGen/obj/
src/ProtoGen.Test/bin/
src/ProtoGen.Test/obj/
src/ProtoMunge/bin/
src/ProtoMunge/obj/
mono/bin
mono/tmp
mono/protoc
...
...
@@ -36,6 +23,7 @@ lib/NUnit
#
*.user
*.suo
*.nupkg
_ReSharper.*
*.sln.cache
mono/TestResult.xml
...
...
csharp/build_packages.bat
0 → 100644
View file @
46feed02
@rem Builds Google.Protobuf NuGet packages
@rem Adjust the location of nuget.exe
set NUGET=C:\nuget\nuget.exe
@rem Build src/ProtocolBuffers.sln solution in Release configuration first.
%NUGET% pack src\ProtocolBuffers\Google.Protobuf.nuspec -Symbols || goto :error
goto :EOF
:error
echo Failed!
exit /b %errorlevel%
csharp/src/ProtocolBuffers/Google.Protobuf.nuspec
0 → 100644
View file @
46feed02
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>
Google.Protobuf
</id>
<title>
Google Protocol Buffers C#
</title>
<summary>
C# runtime library for Protocol Buffers - Google's data interchange format.
</summary>
<description>
See project site for more info.
</description>
<version>
3.0.0-experimental
</version>
<authors>
Google Inc.
</authors>
<owners>
protobuf-packages
</owners>
<licenseUrl>
https://github.com/google/protobuf/blob/master/LICENSE
</licenseUrl>
<projectUrl>
https://github.com/google/protobuf
</projectUrl>
<requireLicenseAcceptance>
false
</requireLicenseAcceptance>
<releaseNotes>
Experimental version of C# Protocol Buffers
</releaseNotes>
<copyright>
Copyright 2015, Google Inc.
</copyright>
<tags>
Protocol Buffers Binary Serialization Format Google proto proto3
</tags>
</metadata>
<files>
<file
src=
"bin/Release/Google.Protobuf.dll"
target=
"lib/portable-net45+win8+wp8+wpa81"
/>
<file
src=
"bin/Release/Google.Protobuf.pdb"
target=
"lib/portable-net45+win8+wp8+wpa81"
/>
<file
src=
"bin/Release/Google.Protobuf.xml"
target=
"lib/portable-net45+win8+wp8+wpa81"
/>
<file
src=
"**\*.cs"
target=
"src"
/>
</files>
</package>
csharp/src/ProtocolBuffers/ProtocolBuffers.csproj
View file @
46feed02
...
...
@@ -97,6 +97,9 @@
<Compile
Include=
"ThrowHelper.cs"
/>
<Compile
Include=
"WireFormat.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"Google.Protobuf.nuspec"
/>
</ItemGroup>
<Import
Project=
"$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets"
/>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment