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
5a80c378
Commit
5a80c378
authored
May 20, 2011
by
csharptest
Committed by
rogerk
May 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved key file to /keys directory
parent
d6405f83
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
28 additions
and
48 deletions
+28
-48
Google.ProtocolBuffers.snk
keys/Google.ProtocolBuffers.snk
+0
-0
buildall.sh
mono/buildall.sh
+5
-4
Google.ProtocolBuffers.ProtoGen.Test.snk
....Test/Properties/Google.ProtocolBuffers.ProtoGen.Test.snk
+0
-0
ProtoGen.Test.csproj
src/ProtoGen.Test/ProtoGen.Test.csproj
+1
-4
Google.ProtocolBuffers.ProtoGen.snk
src/ProtoGen/Properties/Google.ProtocolBuffers.ProtoGen.snk
+0
-0
ProtoGen.csproj
src/ProtoGen/ProtoGen.csproj
+8
-8
Google.ProtocolBuffers.Test.snk
...olBuffers.Test/Properties/Google.ProtocolBuffers.Test.snk
+0
-0
ProtocolBuffers.Test.csproj
src/ProtocolBuffers.Test/ProtocolBuffers.Test.csproj
+8
-10
UnitTestGenericServices.cs
...rotocolBuffers.Test/TestProtos/UnitTestGenericServices.cs
+1
-1
UnitTestRpcInterop.cs
src/ProtocolBuffers.Test/TestProtos/UnitTestRpcInterop.cs
+1
-1
ProtocolBuffers.csproj
src/ProtocolBuffers/ProtocolBuffers.csproj
+1
-4
ProtocolBuffersLite.csproj
src/ProtocolBuffers/ProtocolBuffersLite.csproj
+1
-4
ProtocolBuffersLite.Test.csproj
src/ProtocolBuffersLite.Test/ProtocolBuffersLite.Test.csproj
+1
-6
ProtocolBuffersLiteMixed.Test.csproj
...ocolBuffersLite.Test/ProtocolBuffersLiteMixed.Test.csproj
+1
-6
No files found.
src/ProtocolBuffers/Propertie
s/Google.ProtocolBuffers.snk
→
key
s/Google.ProtocolBuffers.snk
View file @
5a80c378
File moved
mono/buildall.sh
View file @
5a80c378
...
...
@@ -9,6 +9,7 @@ NUNIT_OPTIONS=-noshadow
SRC
=
../src
LIB
=
../lib
KEYFILE
=
../keys/Google.ProtocolBuffers.snk
rm
-rf
bin
mkdir
bin
...
...
@@ -18,19 +19,19 @@ mkdir bin
cp
-f
$LIB
/
{
Rhino.Mocks.dll,nunit.framework.dll
}
bin
echo
Building main library
gmcs
-target
:library
-out
:bin/Google.ProtocolBuffers.dll
`
find
$SRC
/ProtocolBuffers
-name
'*.cs'
`
-keyfile
:
$
SRC
/ProtocolBuffers/Properties/Google.ProtocolBuffers.snk
gmcs
-target
:library
-out
:bin/Google.ProtocolBuffers.dll
`
find
$SRC
/ProtocolBuffers
-name
'*.cs'
`
-keyfile
:
$
KEYFILE
echo
Building main library tests
gmcs
-target
:library
-out
:bin/Google.ProtocolBuffers.Test.dll
`
find
$SRC
/ProtocolBuffers.Test
-name
'*.cs'
`
-keyfile
:
$
SRC
/ProtocolBuffers.Test/Properties/Google.ProtocolBuffers.Test.snk
-r
:bin/Google.ProtocolBuffers.dll
-r
:
$LIB
/nunit.framework.dll
-r
:
$LIB
/Rhino.Mocks.dll
gmcs
-target
:library
-out
:bin/Google.ProtocolBuffers.Test.dll
`
find
$SRC
/ProtocolBuffers.Test
-name
'*.cs'
`
-keyfile
:
$
KEYFILE
-r
:bin/Google.ProtocolBuffers.dll
-r
:
$LIB
/nunit.framework.dll
-r
:
$LIB
/Rhino.Mocks.dll
echo
Running main library tests
mono
$NUNIT
bin/Google.ProtocolBuffers.Test.dll
$NUNIT_OPTIONS
echo
Building ProtoGen
gmcs
-target
:exe
-out
:bin/ProtoGen.exe
`
find
$SRC
/ProtoGen
-name
'*.cs'
`
-keyfile
:
$
SRC
/ProtoGen/Properties/Google.ProtocolBuffers.ProtoGen.snk
-r
:bin/Google.ProtocolBuffers.dll
gmcs
-target
:exe
-out
:bin/ProtoGen.exe
`
find
$SRC
/ProtoGen
-name
'*.cs'
`
-keyfile
:
$
KEYFILE
-r
:bin/Google.ProtocolBuffers.dll
echo
Building ProtoGen tests
gmcs
-target
:library
-out
:bin/Google.ProtocolBuffers.ProtoGen.Test.dll
`
find
$SRC
/ProtoGen.Test
-name
'*.cs'
`
-keyfile
:
$
SRC
/ProtoGen.Test/Properties/Google.ProtocolBuffers.ProtoGen.Test.snk
-r
:bin/Google.ProtocolBuffers.dll
-r
:
$LIB
/nunit.framework.dll
-r
:bin/ProtoGen.exe
gmcs
-target
:library
-out
:bin/Google.ProtocolBuffers.ProtoGen.Test.dll
`
find
$SRC
/ProtoGen.Test
-name
'*.cs'
`
-keyfile
:
$
KEYFILE
-r
:bin/Google.ProtocolBuffers.dll
-r
:
$LIB
/nunit.framework.dll
-r
:bin/ProtoGen.exe
echo
Running ProtoGen tests
mono
$NUNIT
bin/Google.ProtocolBuffers.ProtoGen.Test.dll
$NUNIT_OPTIONS
src/ProtoGen.Test/Properties/Google.ProtocolBuffers.ProtoGen.Test.snk
deleted
100644 → 0
View file @
d6405f83
File deleted
src/ProtoGen.Test/ProtoGen.Test.csproj
View file @
5a80c378
...
...
@@ -13,7 +13,7 @@
<TargetFrameworkVersion>
v2.0
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<SignAssembly>
true
</SignAssembly>
<AssemblyOriginatorKeyFile>
Properties\Google.ProtocolBuffers.ProtoGen.Test
.snk
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
..\..\keys\Google.ProtocolBuffers
.snk
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
...
...
@@ -84,9 +84,6 @@
<Name>
ProtoGen
</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None
Include=
"Properties\Google.ProtocolBuffers.ProtoGen.Test.snk"
/>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage
Include=
"Microsoft.Net.Client.3.5"
>
<Visible>
False
</Visible>
...
...
src/ProtoGen/Properties/Google.ProtocolBuffers.ProtoGen.snk
deleted
100644 → 0
View file @
d6405f83
File deleted
src/ProtoGen/ProtoGen.csproj
View file @
5a80c378
...
...
@@ -13,7 +13,7 @@
<TargetFrameworkVersion>
v2.0
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<SignAssembly>
true
</SignAssembly>
<AssemblyOriginatorKeyFile>
Properties\Google.ProtocolBuffers.ProtoGen
.snk
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
..\..\keys\Google.ProtocolBuffers
.snk
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
...
...
@@ -91,7 +91,6 @@
</ItemGroup>
<ItemGroup>
<None
Include=
"app.config"
/>
<None
Include=
"Properties\Google.ProtocolBuffers.ProtoGen.snk"
/>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"..\ProtocolBuffers\ProtocolBuffers.csproj"
>
...
...
@@ -117,11 +116,11 @@
</BootstrapperPackage>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.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.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
<!-- 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.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
src/ProtocolBuffers.Test/Properties/Google.ProtocolBuffers.Test.snk
deleted
100644 → 0
View file @
d6405f83
File deleted
src/ProtocolBuffers.Test/ProtocolBuffers.Test.csproj
View file @
5a80c378
...
...
@@ -13,7 +13,7 @@
<TargetFrameworkVersion>
v2.0
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<SignAssembly>
true
</SignAssembly>
<AssemblyOriginatorKeyFile>
Properties\Google.ProtocolBuffers.Test
.snk
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
..\..\keys\Google.ProtocolBuffers
.snk
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
...
...
@@ -112,9 +112,6 @@
<Name>
ProtocolBuffers
</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None
Include=
"Properties\Google.ProtocolBuffers.Test.snk"
/>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage
Include=
"Microsoft.Net.Client.3.5"
>
<Visible>
False
</Visible>
...
...
@@ -134,11 +131,11 @@
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
Condition=
" '$(Configuration)' == 'Debug' "
/>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
Condition=
" '$(Configuration)' == 'Release' "
/>
<!-- 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.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
<!-- 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.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
src/ProtocolBuffers.Test/TestProtos/UnitTestGenericServices.cs
View file @
5a80c378
// Generated by ProtoGen, Version=
0.9.0.0
, Culture=neutral, PublicKeyToken=8fd7408b07f8d2cd. DO NOT EDIT!
// Generated by ProtoGen, Version=
2.3.0.277
, Culture=neutral, PublicKeyToken=8fd7408b07f8d2cd. DO NOT EDIT!
using
pb
=
global
::
Google
.
ProtocolBuffers
;
using
pbc
=
global
::
Google
.
ProtocolBuffers
.
Collections
;
...
...
src/ProtocolBuffers.Test/TestProtos/UnitTestRpcInterop.cs
View file @
5a80c378
// Generated by ProtoGen, Version=
0.9.0.0
, Culture=neutral, PublicKeyToken=8fd7408b07f8d2cd. DO NOT EDIT!
// Generated by ProtoGen, Version=
2.3.0.277
, Culture=neutral, PublicKeyToken=8fd7408b07f8d2cd. DO NOT EDIT!
using
pb
=
global
::
Google
.
ProtocolBuffers
;
using
pbc
=
global
::
Google
.
ProtocolBuffers
.
Collections
;
...
...
src/ProtocolBuffers/ProtocolBuffers.csproj
View file @
5a80c378
...
...
@@ -13,7 +13,7 @@
<TargetFrameworkVersion>
v2.0
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<SignAssembly>
true
</SignAssembly>
<AssemblyOriginatorKeyFile>
Propertie
s\Google.ProtocolBuffers.snk
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
..\..\key
s\Google.ProtocolBuffers.snk
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<UpgradeBackupLocation>
...
...
@@ -187,9 +187,6 @@
<Compile
Include=
"UnknownFieldSet.cs"
/>
<Compile
Include=
"WireFormat.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"Properties\Google.ProtocolBuffers.snk"
/>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage
Include=
"Microsoft.Net.Client.3.5"
>
<Visible>
False
</Visible>
...
...
src/ProtocolBuffers/ProtocolBuffersLite.csproj
View file @
5a80c378
...
...
@@ -13,7 +13,7 @@
<TargetFrameworkVersion>
v2.0
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<SignAssembly>
true
</SignAssembly>
<AssemblyOriginatorKeyFile>
Propertie
s\Google.ProtocolBuffers.snk
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
..\..\key
s\Google.ProtocolBuffers.snk
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>
3.5
</OldToolsVersion>
...
...
@@ -75,9 +75,6 @@
</ItemGroup>
<ItemGroup>
</ItemGroup>
<ItemGroup>
<None
Include=
"Properties\Google.ProtocolBuffers.snk"
/>
</ItemGroup>
<ItemGroup>
<Compile
Include=
"AbstractBuilderLite.cs"
/>
<Compile
Include=
"AbstractMessageLite.cs"
/>
...
...
src/ProtocolBuffersLite.Test/ProtocolBuffersLite.Test.csproj
View file @
5a80c378
...
...
@@ -13,7 +13,7 @@
<TargetFrameworkVersion>
v2.0
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<SignAssembly>
true
</SignAssembly>
<AssemblyOriginatorKeyFile>
..\
ProtocolBuffers.Test\Properties\Google.ProtocolBuffers.Test
.snk
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
..\
..\keys\Google.ProtocolBuffers
.snk
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>
3.5
</OldToolsVersion>
...
...
@@ -66,11 +66,6 @@
<Compile
Include=
"TestProtos\UnitTestImportLiteProtoFile.cs"
/>
<Compile
Include=
"TestProtos\UnitTestLiteProtoFile.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"..\ProtocolBuffers.Test\Properties\Google.ProtocolBuffers.Test.snk"
>
<Link>
Properties\Google.ProtocolBuffers.Test.snk
</Link>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"..\ProtocolBuffers\ProtocolBuffersLite.csproj"
>
<Project>
{6969BDCE-D925-43F3-94AC-A531E6DF2591}
</Project>
...
...
src/ProtocolBuffersLite.Test/ProtocolBuffersLiteMixed.Test.csproj
View file @
5a80c378
...
...
@@ -13,7 +13,7 @@
<TargetFrameworkVersion>
v2.0
</TargetFrameworkVersion>
<FileAlignment>
512
</FileAlignment>
<SignAssembly>
true
</SignAssembly>
<AssemblyOriginatorKeyFile>
..\
ProtocolBuffers.Test\Properties\Google.ProtocolBuffers.Test
.snk
</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
..\
..\keys\Google.ProtocolBuffers
.snk
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>
3.5
</OldToolsVersion>
...
...
@@ -72,11 +72,6 @@
<Compile
Include=
"TestProtos\UnitTestLiteProtoFile.cs"
/>
<Compile
Include=
"TestProtos\UnitTestProtoFile.cs"
/>
</ItemGroup>
<ItemGroup>
<None
Include=
"..\ProtocolBuffers.Test\Properties\Google.ProtocolBuffers.Test.snk"
>
<Link>
Properties\Google.ProtocolBuffers.Test.snk
</Link>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference
Include=
"..\ProtocolBuffers\ProtocolBuffers.csproj"
>
<Project>
{6908BDCE-D925-43F3-94AC-A531E6DF2591}
</Project>
...
...
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