Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
Move keyfile to solution directory and only link it in project file.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed Aug 26, 2010
1 parent 6e08279 commit 72d04d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
File renamed without changes.
9 changes: 6 additions & 3 deletions WebKitBrowser/WebKitBrowser.csproj
Expand Up @@ -14,7 +14,8 @@
<FileAlignment>512</FileAlignment>
<ApplicationManifest>WebKitBrowser.dll.manifest</ApplicationManifest>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>WebKit .NET.snk</AssemblyOriginatorKeyFile>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
Expand Down Expand Up @@ -113,8 +114,10 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="..\WebKit.NET.snk">
<Link>WebKit.NET.snk</Link>
</None>
<None Include="app.config" />
<None Include="WebKit .NET.snk" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
Expand Down Expand Up @@ -146,6 +149,6 @@
xcopy /E /Y /EXCLUDE:temp_exclude_files.txt "$(SolutionDir)webkit\*" "$(SolutionDir)bin\$(ConfigurationName)"
del temp_exclude_files.txt</PostBuildEvent>
<PreBuildEvent>call "$(DevEnvDir)..\..\VC\vcvarsall.bat" x86
tlbimp "$(SolutionDir)webkit\webkit.tlb" /silent /keyfile:"$(ProjectDir)WebKit .NET.snk" /namespace:WebKit.Interop /out:"$(SolutionDir)webkit\WebKit.Interop.dll"</PreBuildEvent>
tlbimp "$(SolutionDir)webkit\webkit.tlb" /silent /keyfile:"$(SolutionDir)WebKit .NET.snk" /namespace:WebKit.Interop /out:"$(SolutionDir)webkit\WebKit.Interop.dll"</PreBuildEvent>
</PropertyGroup>
</Project>

0 comments on commit 72d04d2

Please sign in to comment.