Skip to content

Commit 284fc97

Browse files
author
zzzprojects
committed
Added signed version
Added signed version
1 parent e15cb40 commit 284fc97

File tree

5 files changed

+27
-7
lines changed

5 files changed

+27
-7
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
*.pfx
2+
*.snk
3+
Z.Lab/
4+
15
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
26
[Bb]in/
37
[Oo]bj/
1.27 MB
Binary file not shown.

GraphDiff/GraphDiff.sln

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.30501.0
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26730.12
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraphDiff.Tests", "GraphDiff.Tests\GraphDiff.Tests.csproj", "{36762487-8275-440B-8E19-AADA325652E4}"
77
EndProject
@@ -14,6 +14,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{3AB2ED
1414
.nuget\NuGet.targets = .nuget\NuGet.targets
1515
EndProjectSection
1616
EndProject
17+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Z.Lab", "Z.Lab\Z.Lab.csproj", "{BB103C62-0A60-4DB7-BFA8-E9BEFA047DA3}"
18+
EndProject
1719
Global
1820
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1921
Debug|Any CPU = Debug|Any CPU
@@ -28,8 +30,15 @@ Global
2830
{D9725B00-669C-409D-9AB8-C674710C8E5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
2931
{D9725B00-669C-409D-9AB8-C674710C8E5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
3032
{D9725B00-669C-409D-9AB8-C674710C8E5D}.Release|Any CPU.Build.0 = Release|Any CPU
33+
{BB103C62-0A60-4DB7-BFA8-E9BEFA047DA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34+
{BB103C62-0A60-4DB7-BFA8-E9BEFA047DA3}.Debug|Any CPU.Build.0 = Debug|Any CPU
35+
{BB103C62-0A60-4DB7-BFA8-E9BEFA047DA3}.Release|Any CPU.ActiveCfg = Release|Any CPU
36+
{BB103C62-0A60-4DB7-BFA8-E9BEFA047DA3}.Release|Any CPU.Build.0 = Release|Any CPU
3137
EndGlobalSection
3238
GlobalSection(SolutionProperties) = preSolution
3339
HideSolutionNode = FALSE
3440
EndGlobalSection
41+
GlobalSection(ExtensibilityGlobals) = postSolution
42+
SolutionGuid = {A90EC142-D07B-4BCA-8356-62A163BADB19}
43+
EndGlobalSection
3544
EndGlobal

GraphDiff/GraphDiff/GraphDiff.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@
3232
<ErrorReport>prompt</ErrorReport>
3333
<WarningLevel>4</WarningLevel>
3434
</PropertyGroup>
35+
<PropertyGroup>
36+
<SignAssembly>true</SignAssembly>
37+
</PropertyGroup>
38+
<PropertyGroup>
39+
<AssemblyOriginatorKeyFile>zzzproject.pfx</AssemblyOriginatorKeyFile>
40+
</PropertyGroup>
3541
<ItemGroup>
3642
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
3743
<SpecificVersion>False</SpecificVersion>
@@ -66,6 +72,7 @@
6672
</ItemGroup>
6773
<ItemGroup>
6874
<None Include="packages.config" />
75+
<None Include="zzzproject.pfx" />
6976
</ItemGroup>
7077
<ItemGroup />
7178
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

GraphDiff/GraphDiff/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
[assembly: AssemblyTitle("GraphDiff")]
88
[assembly: AssemblyDescription("Detached graph auto update for entity framework")]
99
[assembly: AssemblyConfiguration("")]
10-
[assembly: AssemblyCompany("")]
10+
[assembly: AssemblyCompany("ZZZ Projects Inc.")]
1111
[assembly: AssemblyProduct("GraphDiff")]
12-
[assembly: AssemblyCopyright("Copyright © Brent McKendrick 2012")]
13-
[assembly: AssemblyTrademark("")]
12+
[assembly: AssemblyCopyright("Copyright © ZZZ Projects Inc. 2014 - 2016")]
13+
[assembly: AssemblyTrademark("SQL & .NET Tools")]
1414
[assembly: AssemblyCulture("")]
1515

1616
// Setting ComVisible to false makes the types in this assembly not visible
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.0.1")]
35-
[assembly: AssemblyFileVersion("2.0.1")]
34+
[assembly: AssemblyVersion("3.0.0")]
35+
[assembly: AssemblyFileVersion("3.0.0")]

0 commit comments

Comments
 (0)