Skip to content

Commit 910cce3

Browse files
committed
Merge pull request #129 from ParsePlatform/gogo.code-sign
Prepare .csproj for code signing
2 parents 565ba1d + d4d39a2 commit 910cce3

File tree

5 files changed

+9
-15
lines changed

5 files changed

+9
-15
lines changed

Parse/Parse.NetFx45.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
<WarningLevel>4</WarningLevel>
3434
<DocumentationFile>bin\Release\NetFx45\Parse.NetFx45.xml</DocumentationFile>
3535
</PropertyGroup>
36-
<PropertyGroup>
37-
<SignAssembly>false</SignAssembly>
38-
</PropertyGroup>
3936
<ItemGroup>
4037
<Reference Include="System" />
4138
<Reference Include="Microsoft.CSharp" />
@@ -78,6 +75,9 @@
7875
<Name>Parse</Name>
7976
</ProjectReference>
8077
</ItemGroup>
78+
<PropertyGroup>
79+
<SignAssembly>false</SignAssembly>
80+
</PropertyGroup>
8181
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8282
<Import Project="$(SolutionDir)\.nuget\nuget.targets" Condition="Exists('$(SolutionDir)\.nuget\nuget.targets')" />
8383
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Parse/Parse.Phone.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@
8686
<ErrorReport>prompt</ErrorReport>
8787
<WarningLevel>4</WarningLevel>
8888
</PropertyGroup>
89-
<PropertyGroup>
90-
<SignAssembly>false</SignAssembly>
91-
</PropertyGroup>
9289
<ItemGroup>
9390
<Compile Include="Internal\**\Phone\*.cs" />
9491

@@ -105,6 +102,9 @@
105102
<Name>Parse</Name>
106103
</ProjectReference>
107104
</ItemGroup>
105+
<PropertyGroup>
106+
<SignAssembly>false</SignAssembly>
107+
</PropertyGroup>
108108
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" />
109109
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" />
110110
<ProjectExtensions />

Parse/Parse.WinRT.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,6 @@
127127
<PropertyGroup>
128128
<SignAssembly>false</SignAssembly>
129129
</PropertyGroup>
130-
<PropertyGroup>
131-
<AssemblyOriginatorKeyFile>Parse.snk</AssemblyOriginatorKeyFile>
132-
</PropertyGroup>
133130
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
134131
<Import Project="$(SolutionDir)\.nuget\nuget.targets" Condition="Exists('$(SolutionDir)\.nuget\nuget.targets')" />
135132
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Parse/Parse.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@
5959
<Compile Include="Internal\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
6060
<Compile Include="Public\**\*.cs" Exclude="$(ExcludedPlatformSpecificSourceFilesString)" />
6161
</ItemGroup>
62-
62+
<PropertyGroup>
63+
<SignAssembly>false</SignAssembly>
64+
</PropertyGroup>
6365
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
6466
<Import Project="$(SolutionDir)\.nuget\nuget.targets" Condition="Exists('$(SolutionDir)\.nuget\nuget.targets')" />
6567
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Parse/Properties/AssemblyInfo.Portable.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,8 @@
1616
[assembly: InternalsVisibleTo("ParseTest.Integration.Phone")]
1717

1818
[assembly: InternalsVisibleTo("ParseTest.Unit.NetFx45")]
19-
2019
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
2120

22-
// Internal visibility for sample projects
23-
[assembly: InternalsVisibleTo("ParsePushSample")]
24-
[assembly: InternalsVisibleTo("ParsePhonePushSample")]
25-
2621
#if MONO
2722
[assembly: InternalsVisibleTo("ParseTestIntegrationiOS")]
2823
[assembly: InternalsVisibleTo("ParseTest.Integration.Android")]

0 commit comments

Comments
 (0)