Thread: SF.net SVN: mod-aspdotnet: [190] mod_aspdotnet2/trunk/Apache.Web/Apache.Web .vcproj
Brought to you by:
wrowe
From: <wr...@us...> - 2007-08-14 19:16:23
|
Revision: 190 http://mod-aspdotnet.svn.sourceforge.net/mod-aspdotnet/?rev=190&view=rev Author: wrowe Date: 2007-08-14 12:16:21 -0700 (Tue, 14 Aug 2007) Log Message: ----------- Use /clr, will need to modify everything for VC8 before this branch will compile once again Modified Paths: -------------- mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj Modified: mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj =================================================================== --- mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj 2007-08-14 19:08:31 UTC (rev 189) +++ mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj 2007-08-14 19:16:21 UTC (rev 190) @@ -4,6 +4,7 @@ Version="8.00" Name="Apache.Web" ProjectGUID="{4B4F627E-C6DE-4614-9135-306D94F8755B}" + RootNamespace="Apache.Web" Keyword="ManagedCProj" > <Platforms> @@ -21,7 +22,7 @@ ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" CharacterSet="2" - ManagedExtensions="4" + ManagedExtensions="1" > <Tool Name="VCPreBuildEventTool" @@ -200,7 +201,7 @@ ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" CharacterSet="2" - ManagedExtensions="4" + ManagedExtensions="1" > <Tool Name="VCPreBuildEventTool" @@ -289,7 +290,7 @@ ConfigurationType="2" InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC70.vsprops" CharacterSet="2" - ManagedExtensions="4" + ManagedExtensions="1" > <Tool Name="VCPreBuildEventTool" @@ -344,6 +345,7 @@ DelayLoadDLLs="libapr-1.dll;libaprutil-1.dll;libhttpd.dll" TypeLibraryFile="" GenerateDebugInformation="true" + AssemblyDebug="1" SupportUnloadOfDelayLoadedDLL="false" /> <Tool This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wr...@us...> - 2008-03-03 22:20:40
|
Revision: 216 http://mod-aspdotnet.svn.sourceforge.net/mod-aspdotnet/?rev=216&view=rev Author: wrowe Date: 2008-03-03 14:20:38 -0800 (Mon, 03 Mar 2008) Log Message: ----------- Use tlbexp.exe to generate the package's binding library for COM. Modified Paths: -------------- mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj Modified: mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj =================================================================== --- mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj 2007-09-21 14:37:24 UTC (rev 215) +++ mod_aspdotnet2/trunk/Apache.Web/Apache.Web.vcproj 2008-03-03 22:20:38 UTC (rev 216) @@ -102,7 +102,7 @@ <Tool Name="VCPostBuildEventTool" 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" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
tlbexp /nologo /out:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
" /> </Configuration> <Configuration @@ -191,7 +191,7 @@ <Tool Name="VCPostBuildEventTool" 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"" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
tlbexp /nologo /out:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
" /> </Configuration> <Configuration @@ -280,7 +280,7 @@ <Tool Name="VCPostBuildEventTool" 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"" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
tlbexp /nologo /out:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
" /> </Configuration> <Configuration @@ -372,7 +372,7 @@ <Tool Name="VCPostBuildEventTool" 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" + CommandLine="sn -Ra "$(OutDir)\Apache.Web.dll" "$(ProjectDir)\Apache.Web.snk"
tlbexp /nologo /out:"$(IntDir)/Apache.Web.tlb" "$(OutDir)\Apache.Web.dll"
" /> </Configuration> </Configurations> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |