Skip to content

Commit 6532ce3

Browse files
committed
Moved the strong name key down to the root
1 parent 1defef5 commit 6532ce3

File tree

8 files changed

+11
-13
lines changed

8 files changed

+11
-13
lines changed
File renamed without changes.

src/MiniProfiler.EntityFramework/MiniProfiler.EntityFramework.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
<OutputType>Library</OutputType>
77
<OutputPath>bin\$(Configuration)\</OutputPath>
88
<SignAssembly>true</SignAssembly>
9-
<AssemblyOriginatorKeyFile>..\MiniProfiler\miniprofiler.snk</AssemblyOriginatorKeyFile>
9+
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<Compile Include="**\*.cs" Exclude="obj\**\*.cs" />
1313
<None Include="App.config" />
14-
<None Include="miniprofiler.snk" />
1514
</ItemGroup>
1615
<ItemGroup>
1716
<ProjectReference Include="..\MiniProfiler.Shared\MiniProfiler.Shared.csproj" />

src/MiniProfiler.MongoDB/MiniProfiler.MongoDB.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFramework>netstandard1.5</TargetFramework>
55
<AssemblyName>MiniProfiler.MongoDB</AssemblyName>
66
<OutputType>Library</OutputType>
7-
<OutputPath>bin\</OutputPath>
7+
<OutputPath>bin\$(Configuration)\</OutputPath>
88
<SignAssembly>true</SignAssembly>
9-
<AssemblyOriginatorKeyFile>..\MiniProfiler\miniprofiler.snk</AssemblyOriginatorKeyFile>
9+
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<Compile Include="**\*.cs" />

src/MiniProfiler.Mvc/MiniProfiler.Mvc.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFramework>net45</TargetFramework>
55
<AssemblyName>MiniProfiler.Mvc</AssemblyName>
66
<OutputType>Library</OutputType>
7-
<OutputPath>bin\</OutputPath>
7+
<OutputPath>bin\$(Configuration)\</OutputPath>
88
<SignAssembly>true</SignAssembly>
9-
<AssemblyOriginatorKeyFile>..\MiniProfiler\miniprofiler.snk</AssemblyOriginatorKeyFile>
9+
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<ProjectReference Include="..\MiniProfiler\MiniProfiler.csproj" />

src/MiniProfiler.RavenDb/MiniProfiler.RavenDb.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<OutputType>Library</OutputType>
77
<OutputPath>bin\$(Configuration)\</OutputPath>
88
<SignAssembly>false</SignAssembly>
9-
<AssemblyOriginatorKeyFile>..\MiniProfiler\miniprofiler.snk</AssemblyOriginatorKeyFile>
9+
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<Compile Include="**\*.cs" />

src/MiniProfiler.Shared/MiniProfiler.Shared.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
55
<AssemblyName>MiniProfiler.Shared</AssemblyName>
66
<OutputType>Library</OutputType>
7-
<OutputPath>bin\</OutputPath>
7+
<OutputPath>bin\$(Configuration)\</OutputPath>
88
<SignAssembly>true</SignAssembly>
9-
<AssemblyOriginatorKeyFile>..\MiniProfiler\miniprofiler.snk</AssemblyOriginatorKeyFile>
9+
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<Compile Include="**\*.cs" />

src/MiniProfiler.Storage.SqlServer/MiniProfiler.Storage.SqlServer.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFrameworks>net45;netstandard1.5</TargetFrameworks>
55
<AssemblyName>MiniProfiler.Storage.SqlServer</AssemblyName>
66
<OutputType>Library</OutputType>
7-
<OutputPath>bin\</OutputPath>
7+
<OutputPath>bin\$(Configuration)\</OutputPath>
88
<SignAssembly>true</SignAssembly>
9-
<AssemblyOriginatorKeyFile>..\MiniProfiler\miniprofiler.snk</AssemblyOriginatorKeyFile>
9+
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<Compile Include="**\*.cs" />

src/MiniProfiler/MiniProfiler.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<OutputType>Library</OutputType>
77
<OutputPath>bin\$(Configuration)\</OutputPath>
88
<SignAssembly>true</SignAssembly>
9-
<AssemblyOriginatorKeyFile>miniprofiler.snk</AssemblyOriginatorKeyFile>
9+
<AssemblyOriginatorKeyFile>..\..\miniprofiler.snk</AssemblyOriginatorKeyFile>
1010
</PropertyGroup>
1111
<ItemGroup>
1212
<Reference Include="Microsoft.CSharp" />
@@ -23,7 +23,6 @@
2323
</ItemGroup>
2424
<ItemGroup>
2525
<Compile Include="**/*.cs" />
26-
<None Include="miniprofiler.snk" />
2726
<EmbeddedResource Include="ui\includes.tmpl" />
2827
<EmbeddedResource Include="ui\README.md" />
2928
<EmbeddedResource Include="ui\include.partial.html" />

0 commit comments

Comments
 (0)