Skip to content

Commit bb6b949

Browse files
author
zzzprojects
committed
Fix issue with class inside class
Fix issue with class inside class
1 parent 9831036 commit bb6b949

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.pfx
22
*.snk
33
Z.Lab/
4+
.vs/
45

56
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
67
[Bb]in/
@@ -110,3 +111,4 @@ Generated_Code #added for RIA/Silverlight projects
110111
_UpgradeReport_Files/
111112
Backup*/
112113
UpgradeLog*.XML
114+
GraphDiff/.vs/GraphDiff/v15/sqlite3/storage.ide
0 Bytes
Binary file not shown.

GraphDiff/GraphDiff.sln

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
32
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27130.2003
3+
VisualStudioVersion = 15.0.27004.2009
54
MinimumVisualStudioVersion = 10.0.40219.1
65
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraphDiff.Tests", "GraphDiff.Tests\GraphDiff.Tests.csproj", "{36762487-8275-440B-8E19-AADA325652E4}"
76
EndProject

GraphDiff/GraphDiff/GraphDiff.csproj

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -31,9 +31,10 @@
3131
<DefineConstants>TRACE</DefineConstants>
3232
<ErrorReport>prompt</ErrorReport>
3333
<WarningLevel>4</WarningLevel>
34+
<DocumentationFile>bin\Release\RefactorThis.GraphDiff.xml</DocumentationFile>
3435
</PropertyGroup>
3536
<PropertyGroup>
36-
<SignAssembly>false</SignAssembly>
37+
<SignAssembly>true</SignAssembly>
3738
</PropertyGroup>
3839
<PropertyGroup>
3940
<AssemblyOriginatorKeyFile>zzzproject.pfx</AssemblyOriginatorKeyFile>
@@ -72,6 +73,7 @@
7273
</ItemGroup>
7374
<ItemGroup>
7475
<None Include="packages.config" />
76+
<None Include="zzzproject.pfx" />
7577
</ItemGroup>
7678
<ItemGroup />
7779
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
@@ -83,4 +85,4 @@
8385
<Target Name="AfterBuild">
8486
</Target>
8587
-->
86-
</Project>
88+
</Project>

GraphDiff/GraphDiff/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -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("3.0.0")]
35-
[assembly: AssemblyFileVersion("3.0.0")]
34+
[assembly: AssemblyVersion("3.0.1")]
35+
[assembly: AssemblyFileVersion("3.0.1")]

0 commit comments

Comments
 (0)