Skip to content

Commit

Permalink
Move snk file to root
Browse files Browse the repository at this point in the history
  • Loading branch information
ejsmith committed Aug 16, 2017
1 parent eed2ec6 commit 6f426da
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
File renamed without changes.
4 changes: 3 additions & 1 deletion build/Clean.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
$root_dir = Resolve-Path "$PSScriptRoot\..\"
Push-Location $root_dir

Remove-Item $root_dir\artifacts -Force -Recurse
If (Test-Path $root_dir\artifacts) {
Remove-Item $root_dir\artifacts -Force -Recurse
}

Get-ChildItem $root_dir\src -Include bin,obj -Recurse |
ForEach-Object ($_) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<PropertyGroup Label="Signing">
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<AssemblyOriginatorKeyFile>..\Exceptionless.snk</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>..\..\Exceptionless.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PropertyGroup Label="Signing">
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<AssemblyOriginatorKeyFile>..\..\src\Exceptionless.snk</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>..\..\Exceptionless.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Exceptionless.DateTimeExtensions\Exceptionless.DateTimeExtensions.csproj" />
Expand Down

0 comments on commit 6f426da

Please sign in to comment.