SF.net SVN: mod-aspdotnet: [195] mod_aspdotnet2/trunk/Apache.Web
Brought to you by:
wrowe
From: <wr...@us...> - 2007-08-15 06:18:17
|
Revision: 195 http://mod-aspdotnet.svn.sourceforge.net/mod-aspdotnet/?rev=195&view=rev Author: wrowe Date: 2007-08-14 23:18:16 -0700 (Tue, 14 Aug 2007) Log Message: ----------- Detach signing until after post-manifest embedding. Modified Paths: -------------- mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj mod_aspdotnet2/trunk/Apache.Web/AssemblyInfo.cpp Modified: mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj =================================================================== --- mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj 2007-08-15 06:16:05 UTC (rev 194) +++ mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj 2007-08-15 06:18:16 UTC (rev 195) @@ -101,8 +101,8 @@ /> <Tool Name="VCPostBuildEventTool" - Description="Exporting .tlb and Installing debug components to the GAC" - CommandLine="regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll" && gacutil /ir "$(OutDir)\Apache.Web.dll" FILEPATH "$(OutDir)\Apache.Web.dll" Apache.Web" + Description="Signing .dll, Exporting .tlb and Installing debug components to the GAC" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
gacutil /ir "$(OutDir)\Apache.Web.dll" FILEPATH "$(OutDir)\Apache.Web.dll" Apache.Web" /> </Configuration> <Configuration @@ -190,8 +190,8 @@ /> <Tool Name="VCPostBuildEventTool" - Description="Exporting .tlb" - CommandLine="regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll" && regasm /nologo /unregister "$(OutDir)\Apache.Web.dll"" + Description="Signing .dll and Exporting .tlb" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
regasm /nologo /unregister "$(OutDir)\Apache.Web.dll"" /> </Configuration> <Configuration @@ -279,8 +279,8 @@ /> <Tool Name="VCPostBuildEventTool" - Description="Exporting .tlb" - CommandLine="regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll" && regasm /nologo /unregister "$(OutDir)\Apache.Web.dll"" + Description="Signing .dll and Exporting .tlb" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
regasm /nologo /unregister "$(OutDir)\Apache.Web.dll"" /> </Configuration> <Configuration @@ -371,8 +371,8 @@ /> <Tool Name="VCPostBuildEventTool" - Description="Exporting .tlb and Installing debug components to the GAC" - CommandLine="regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll" && gacutil /ir "$(OutDir)\Apache.Web.dll" FILEPATH "$(OutDir)\Apache.Web.dll" Apache.Web" + Description="Signing .dll, Exporting .tlb and Installing debug components to the GAC" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
regasm /nologo /tlb:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
gacutil /ir "$(OutDir)\Apache.Web.dll" FILEPATH "$(OutDir)\Apache.Web.dll" Apache.Web" /> </Configuration> </Configurations> @@ -384,50 +384,6 @@ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm" > <File - RelativePath="Helpers\_gcA_gcA_gcString.cs" - > - <FileConfiguration - Name="Debug|Win32" - > - <Tool - Name="VCCustomBuildTool" - Description="Compiling Apache.Web.Helpers" - CommandLine="csc.exe /nologo /w:4 /debug+ /debug:full /o- /incr- /t:module /out:"$(OutDir)\Apache.Web.Helpers.netmodule" $(InputPath)
" - Outputs="$(OutDir)/Apache.Web.Helpers.netmodule" - /> - </FileConfiguration> - <FileConfiguration - Name="Release|Win32" - > - <Tool - Name="VCCustomBuildTool" - Description="Compiling Apache.Web.Helpers" - CommandLine="csc.exe /nologo /w:4 /debug- /o+ /t:module /out:"$(OutDir)\Apache.Web.Helpers.netmodule" $(InputPath)
" - Outputs="$(OutDir)/Apache.Web.Helpers.netmodule" - /> - </FileConfiguration> - <FileConfiguration - Name="Release 2.2|Win32" - > - <Tool - Name="VCCustomBuildTool" - Description="Compiling Apache.Web.Helpers" - CommandLine="csc.exe /nologo /w:4 /debug- /o+ /t:module /out:"$(OutDir)\Apache.Web.Helpers.netmodule" $(InputPath)
" - Outputs="$(OutDir)/Apache.Web.Helpers.netmodule" - /> - </FileConfiguration> - <FileConfiguration - Name="Debug 2.2|Win32" - > - <Tool - Name="VCCustomBuildTool" - Description="Compiling Apache.Web.Helpers" - CommandLine="csc.exe /nologo /w:4 /debug+ /debug:full /o- /incr- /t:module /out:"$(OutDir)\Apache.Web.Helpers.netmodule" $(InputPath)
" - Outputs="$(OutDir)/Apache.Web.Helpers.netmodule" - /> - </FileConfiguration> - </File> - <File RelativePath="AssemblyInfo.cpp" > </File> Modified: mod_aspdotnet2/trunk/Apache.Web/AssemblyInfo.cpp =================================================================== --- mod_aspdotnet2/trunk/Apache.Web/AssemblyInfo.cpp 2007-08-15 06:16:05 UTC (rev 194) +++ mod_aspdotnet2/trunk/Apache.Web/AssemblyInfo.cpp 2007-08-15 06:18:16 UTC (rev 195) @@ -1,4 +1,4 @@ -/* Copyright 2002-2006 Covalent Technologies +/* Copyright 2007 Covalent Technologies * * Covalent Technologies licenses this file to You under the Apache * Software Foundation's Apache License, Version 2.0 (the "License"); @@ -32,7 +32,7 @@ [assembly:AssemblyDescriptionAttribute("Apache Web Hosting Architecture for Microsoft ASP.NET")]; [assembly:AssemblyCompanyAttribute("Covalent Technologies")]; [assembly:AssemblyProductAttribute("mod_aspdotnet")]; -[assembly:AssemblyCopyrightAttribute("Copyright \xA9 2002-2006 Covalent Technologies")]; +[assembly:AssemblyCopyrightAttribute("Copyright \xA9 2007 Covalent Technologies")]; [assembly:AssemblyTrademarkAttribute("")]; [assembly:AssemblyCultureAttribute("")]; [assembly:AssemblyConfigurationAttribute("")]; @@ -72,7 +72,7 @@ // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework // documentation for more information on this. // -[assembly:AssemblyDelaySignAttribute(false)]; +[assembly:AssemblyDelaySignAttribute(true)]; [assembly:AssemblyKeyFileAttribute("Apache.Web.snk")]; [assembly:AssemblyKeyNameAttribute("")]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |