Skip to content

Commit 89a832a

Browse files
committed
Added Code Signing Fixes Redth#46
1 parent f6aa77f commit 89a832a

16 files changed

+116
-54
lines changed

PushSharp-Signing.snk

596 Bytes
Binary file not shown.
596 Bytes
Binary file not shown.

PushSharp.Android/PushSharp.Google.csproj

+7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
32+
<PropertyGroup>
33+
<SignAssembly>true</SignAssembly>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<AssemblyOriginatorKeyFile>PushSharp-Signing.snk</AssemblyOriginatorKeyFile>
37+
</PropertyGroup>
3238
<ItemGroup>
3339
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3440
<SpecificVersion>False</SpecificVersion>
@@ -73,6 +79,7 @@
7379
</ItemGroup>
7480
<ItemGroup>
7581
<None Include="packages.config" />
82+
<None Include="PushSharp-Signing.snk" />
7683
</ItemGroup>
7784
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7885
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

PushSharp.Apple/PushSharp-Signing.snk

596 Bytes
Binary file not shown.

PushSharp.Apple/PushSharp.Apple.csproj

+7
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
32+
<PropertyGroup>
33+
<SignAssembly>true</SignAssembly>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<AssemblyOriginatorKeyFile>PushSharp-Signing.snk</AssemblyOriginatorKeyFile>
37+
</PropertyGroup>
3238
<ItemGroup>
3339
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3440
<SpecificVersion>False</SpecificVersion>
@@ -61,6 +67,7 @@
6167
</ItemGroup>
6268
<ItemGroup>
6369
<None Include="packages.config" />
70+
<None Include="PushSharp-Signing.snk" />
6471
</ItemGroup>
6572
<ItemGroup>
6673
<ProjectReference Include="..\PushSharp.Common\PushSharp.Common.csproj">
596 Bytes
Binary file not shown.

PushSharp.Blackberry/PushSharp.Blackberry.csproj

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
32+
<PropertyGroup>
33+
<SignAssembly>true</SignAssembly>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<AssemblyOriginatorKeyFile>PushSharp-Signing.snk</AssemblyOriginatorKeyFile>
37+
</PropertyGroup>
3238
<ItemGroup>
3339
<Reference Include="System" />
3440
<Reference Include="System.Core" />
@@ -54,6 +60,9 @@
5460
<Name>PushSharp.Common</Name>
5561
</ProjectReference>
5662
</ItemGroup>
63+
<ItemGroup>
64+
<None Include="PushSharp-Signing.snk" />
65+
</ItemGroup>
5766
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5867
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5968
Other similar extension points exist, see Microsoft.Common.targets.
596 Bytes
Binary file not shown.

PushSharp.Common/PushSharp.Common.csproj

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
32+
<PropertyGroup>
33+
<SignAssembly>true</SignAssembly>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<AssemblyOriginatorKeyFile>PushSharp-Signing.snk</AssemblyOriginatorKeyFile>
37+
</PropertyGroup>
3238
<ItemGroup>
3339
<Reference Include="System" />
3440
<Reference Include="System.Core" />
@@ -51,6 +57,9 @@
5157
<Compile Include="PushServiceSettings.cs" />
5258
<Compile Include="PushSettings.cs" />
5359
</ItemGroup>
60+
<ItemGroup>
61+
<None Include="PushSharp-Signing.snk" />
62+
</ItemGroup>
5463
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5564
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
5665
Other similar extension points exist, see Microsoft.Common.targets.
596 Bytes
Binary file not shown.

PushSharp.Windows/PushSharp.Windows.csproj

+7
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
<ErrorReport>prompt</ErrorReport>
3131
<WarningLevel>4</WarningLevel>
3232
</PropertyGroup>
33+
<PropertyGroup>
34+
<SignAssembly>true</SignAssembly>
35+
</PropertyGroup>
36+
<PropertyGroup>
37+
<AssemblyOriginatorKeyFile>PushSharp-Signing.snk</AssemblyOriginatorKeyFile>
38+
</PropertyGroup>
3339
<ItemGroup>
3440
<Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
3541
<SpecificVersion>False</SpecificVersion>
@@ -67,6 +73,7 @@
6773
</ItemGroup>
6874
<ItemGroup>
6975
<None Include="packages.config" />
76+
<None Include="PushSharp-Signing.snk" />
7077
</ItemGroup>
7178
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7279
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
596 Bytes
Binary file not shown.

PushSharp.WindowsPhone/PushSharp.WindowsPhone.csproj

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
32+
<PropertyGroup>
33+
<SignAssembly>true</SignAssembly>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<AssemblyOriginatorKeyFile>PushSharp-Signing.snk</AssemblyOriginatorKeyFile>
37+
</PropertyGroup>
3238
<ItemGroup>
3339
<Reference Include="System" />
3440
<Reference Include="System.Core" />
@@ -58,6 +64,9 @@
5864
<Name>PushSharp.Common</Name>
5965
</ProjectReference>
6066
</ItemGroup>
67+
<ItemGroup>
68+
<None Include="PushSharp-Signing.snk" />
69+
</ItemGroup>
6170
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6271
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
6372
Other similar extension points exist, see Microsoft.Common.targets.

PushSharp.sln

+59-54
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PushSharp.Sample", "PushSha
2121
EndProject
2222
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PushSharp.Windows", "PushSharp.Windows\PushSharp.Windows.csproj", "{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}"
2323
EndProject
24+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8FC4739B-A355-4F92-A62F-1A1813EC52F2}"
25+
ProjectSection(SolutionItems) = preProject
26+
PushSharp-Signing.snk = PushSharp-Signing.snk
27+
EndProjectSection
28+
EndProject
2429
Global
2530
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2631
Debug|Any CPU = Debug|Any CPU
@@ -41,46 +46,6 @@ Global
4146
{09414728-3728-4105-A149-EC2E315355F9}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
4247
{09414728-3728-4105-A149-EC2E315355F9}.Release|Mixed Platforms.Build.0 = Release|Any CPU
4348
{09414728-3728-4105-A149-EC2E315355F9}.Release|x86.ActiveCfg = Release|Any CPU
44-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
45-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Any CPU.Build.0 = Debug|Any CPU
46-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
47-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
48-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|x86.ActiveCfg = Debug|Any CPU
49-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Any CPU.ActiveCfg = Release|Any CPU
50-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Any CPU.Build.0 = Release|Any CPU
51-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
52-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
53-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|x86.ActiveCfg = Release|Any CPU
54-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|Any CPU.ActiveCfg = Debug|x86
55-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
56-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|Mixed Platforms.Build.0 = Debug|x86
57-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|x86.ActiveCfg = Debug|x86
58-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|x86.Build.0 = Debug|x86
59-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|Any CPU.ActiveCfg = Release|x86
60-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|Mixed Platforms.ActiveCfg = Release|x86
61-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|Mixed Platforms.Build.0 = Release|x86
62-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|x86.ActiveCfg = Release|x86
63-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|x86.Build.0 = Release|x86
64-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
65-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Any CPU.Build.0 = Debug|Any CPU
66-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
67-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
68-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|x86.ActiveCfg = Debug|Any CPU
69-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Any CPU.ActiveCfg = Release|Any CPU
70-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Any CPU.Build.0 = Release|Any CPU
71-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
72-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Mixed Platforms.Build.0 = Release|Any CPU
73-
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|x86.ActiveCfg = Release|Any CPU
74-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
75-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
76-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
77-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
78-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|x86.ActiveCfg = Debug|Any CPU
79-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
80-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Any CPU.Build.0 = Release|Any CPU
81-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
82-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
83-
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|x86.ActiveCfg = Release|Any CPU
8449
{836F225F-6CD9-48DE-910C-70F8A7CF54AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
8550
{836F225F-6CD9-48DE-910C-70F8A7CF54AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
8651
{836F225F-6CD9-48DE-910C-70F8A7CF54AA}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
@@ -91,16 +56,6 @@ Global
9156
{836F225F-6CD9-48DE-910C-70F8A7CF54AA}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
9257
{836F225F-6CD9-48DE-910C-70F8A7CF54AA}.Release|Mixed Platforms.Build.0 = Release|Any CPU
9358
{836F225F-6CD9-48DE-910C-70F8A7CF54AA}.Release|x86.ActiveCfg = Release|Any CPU
94-
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
95-
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
96-
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
97-
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
98-
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|x86.ActiveCfg = Debug|Any CPU
99-
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
100-
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Any CPU.Build.0 = Release|Any CPU
101-
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
102-
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
103-
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|x86.ActiveCfg = Release|Any CPU
10459
{9947F510-BA9A-4045-A648-BAB687D8F513}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
10560
{9947F510-BA9A-4045-A648-BAB687D8F513}.Debug|Any CPU.Build.0 = Debug|Any CPU
10661
{9947F510-BA9A-4045-A648-BAB687D8F513}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
@@ -111,17 +66,67 @@ Global
11166
{9947F510-BA9A-4045-A648-BAB687D8F513}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
11267
{9947F510-BA9A-4045-A648-BAB687D8F513}.Release|Mixed Platforms.Build.0 = Release|Any CPU
11368
{9947F510-BA9A-4045-A648-BAB687D8F513}.Release|x86.ActiveCfg = Release|Any CPU
69+
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
70+
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
71+
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
72+
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
73+
{83C67156-893D-4AFF-9169-DB34771989CB}.Debug|x86.ActiveCfg = Debug|Any CPU
74+
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
75+
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Any CPU.Build.0 = Release|Any CPU
76+
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
77+
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
78+
{83C67156-893D-4AFF-9169-DB34771989CB}.Release|x86.ActiveCfg = Release|Any CPU
79+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
80+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Any CPU.Build.0 = Debug|Any CPU
81+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
82+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
83+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Debug|x86.ActiveCfg = Debug|Any CPU
84+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Any CPU.Build.0 = Release|Any CPU
86+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
87+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|Mixed Platforms.Build.0 = Release|Any CPU
88+
{5250980B-BD11-4201-B083-AEDB8C62C471}.Release|x86.ActiveCfg = Release|Any CPU
89+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
90+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
91+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
92+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
93+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Debug|x86.ActiveCfg = Debug|Any CPU
94+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
95+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Any CPU.Build.0 = Release|Any CPU
96+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
97+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
98+
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6}.Release|x86.ActiveCfg = Release|Any CPU
99+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|Any CPU.ActiveCfg = Debug|x86
100+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
101+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|Mixed Platforms.Build.0 = Debug|x86
102+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|x86.ActiveCfg = Debug|x86
103+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Debug|x86.Build.0 = Debug|x86
104+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|Any CPU.ActiveCfg = Release|x86
105+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|Mixed Platforms.ActiveCfg = Release|x86
106+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|Mixed Platforms.Build.0 = Release|x86
107+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|x86.ActiveCfg = Release|x86
108+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB}.Release|x86.Build.0 = Release|x86
109+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
110+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Any CPU.Build.0 = Debug|Any CPU
111+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
112+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
113+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Debug|x86.ActiveCfg = Debug|Any CPU
114+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Any CPU.ActiveCfg = Release|Any CPU
115+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Any CPU.Build.0 = Release|Any CPU
116+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
117+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
118+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D}.Release|x86.ActiveCfg = Release|Any CPU
114119
EndGlobalSection
115120
GlobalSection(SolutionProperties) = preSolution
116121
HideSolutionNode = FALSE
117122
EndGlobalSection
118123
GlobalSection(NestedProjects) = preSolution
119-
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
120-
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB} = {04A9AE38-795E-4CB5-A9AD-C1FA83DC342C}
124+
{9947F510-BA9A-4045-A648-BAB687D8F513} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
125+
{83C67156-893D-4AFF-9169-DB34771989CB} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
121126
{5250980B-BD11-4201-B083-AEDB8C62C471} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
122127
{71E27C37-FBBF-481B-934B-1F7DBDE3C5D6} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
123-
{83C67156-893D-4AFF-9169-DB34771989CB} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
124-
{9947F510-BA9A-4045-A648-BAB687D8F513} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
128+
{0EC3A31E-B869-4465-ABDC-90C2E3CCC17D} = {C09BBA3E-9CF3-4479-A4C3-3006820E2046}
129+
{1B9A3A8B-3690-4435-BF9C-B557BF2713DB} = {04A9AE38-795E-4CB5-A9AD-C1FA83DC342C}
125130
EndGlobalSection
126131
GlobalSection(MonoDevelopProperties) = preSolution
127132
StartupItem = PushSharp.Sample\PushSharp.Sample.csproj

PushSharp/PushSharp-Signing.snk

596 Bytes
Binary file not shown.

PushSharp/PushSharp.csproj

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
32+
<PropertyGroup>
33+
<SignAssembly>true</SignAssembly>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<AssemblyOriginatorKeyFile>PushSharp-Signing.snk</AssemblyOriginatorKeyFile>
37+
</PropertyGroup>
3238
<ItemGroup>
3339
<Reference Include="System" />
3440
<Reference Include="System.Core" />
@@ -72,6 +78,9 @@
7278
<Name>PushSharp.Windows</Name>
7379
</ProjectReference>
7480
</ItemGroup>
81+
<ItemGroup>
82+
<None Include="PushSharp-Signing.snk" />
83+
</ItemGroup>
7584
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7685
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7786
Other similar extension points exist, see Microsoft.Common.targets.

0 commit comments

Comments
 (0)