]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
continuation of msbuild enabled automated installers for Win32/X64
authorJeff Lenk <jeff@jefflenk.com>
Fri, 15 Oct 2010 03:25:44 +0000 (22:25 -0500)
committerJeff Lenk <jeff@jefflenk.com>
Fri, 15 Oct 2010 03:25:44 +0000 (22:25 -0500)
w32/Setup/Product.wxs [new file with mode: 0644]
w32/Setup/Setup.wixproj

diff --git a/w32/Setup/Product.wxs b/w32/Setup/Product.wxs
new file mode 100644 (file)
index 0000000..aa49748
--- /dev/null
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<!-- Platform specific variables -->\r
+<?if $(var.Platform) = x64 ?>\r
+<?define Win64 = "yes" ?>\r
+<?define ProductName = "FreeSWITCH (64 bit)" ?>\r
+<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>\r
+<?else ?>\r
+<?define Win64 = "no" ?>\r
+<?define ProductName = "FreeSWITCH" ?>\r
+<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>\r
+<?endif ?>\r
+\r
+<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">\r
+       <Product Id="b004a325-1272-47e5-a415-a74e9fc99865" Name="$(var.ProductName)" Language="1033" Version="1.0.0.0" Manufacturer="FreeSWITCH" UpgradeCode="3af7020b-1348-45e8-a0cf-80909d4eb421">\r
+               <Package InstallerVersion="200" Compressed="yes" />\r
+\r
+               <Media Id="1" Cabinet="media1.cab" EmbedCab="yes" />\r
+\r
+               <Directory Id="TARGETDIR" Name="SourceDir">\r
+                       <Directory Id="$(var.PlatformProgramFilesFolder)">\r
+                               <Directory Id="INSTALLLOCATION" Name="FreeSWITCH">\r
+          <Directory Id="MODLOCATION" Name="mod">\r
+          </Directory>\r
+          <Directory Id="CONFLOCATION" Name="conf">\r
+          </Directory>\r
+          <Directory Id="SOUNDLOCATION" Name="sounds">\r
+          </Directory>\r
+                                       <!-- TODO: Remove the comments around this Component element and the ComponentRef below in order to add resources to this installer. -->\r
+                                       <!-- <Component Id="ProductComponent" Guid="6f1498a7-d029-430b-b9d9-fe12e17bdbab"> -->\r
+                                               <!-- TODO: Insert files, registry keys, and other resources here. -->\r
+                                       <!-- </Component> -->\r
+                               </Directory>\r
+                       </Directory>\r
+               </Directory>\r
+\r
+               <Feature Id="ProductFeature" Title="FreeSWITCH Core" Level="1">\r
+                       <!-- TODO: Remove the comments around this ComponentRef element and the Component above in order to add resources to this installer. -->\r
+                       <!-- <ComponentRef Id="ProductComponent" /> -->\r
+                       \r
+                       <!-- Note: The following ComponentGroupRef is required to pull in generated authoring from project references. -->\r
+                       <ComponentGroupRef Id="Product.Generated" />\r
+               </Feature>\r
+    <Feature Id="ProductFeatureConf" Title="FreeSWITCH Configuration Sample" Level="1">\r
+      <ComponentGroupRef Id="FreeSWITCHConfFiles" />\r
+    </Feature>\r
+    <Feature Id="ProductFeatureSounds" Title="FreeSWITCH Sounds 8Khz" Level="1">\r
+      <ComponentGroupRef Id="FreeSWITCHSoundFiles8" />\r
+    </Feature>\r
+    <UIRef Id="WixUI_Mondo" />\r
+  </Product>\r
+</Wix>\r
index 03fd60966a1e31156468a6cc3e0d2fa0b9f9f6cc..6e59ed618d77477fa14106f7658c9b81854e342c 100644 (file)
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">\r
     <OutputPath>bin\x86\Debug\</OutputPath>\r
     <IntermediateOutputPath>obj\X86\$(Configuration)\</IntermediateOutputPath>\r
-    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\Win32\debug\sounds;</DefineConstants>\r
+    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\..\Win32\debug\sounds;</DefineConstants>\r
     <WixVariables>\r
     </WixVariables>\r
   </PropertyGroup>\r
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">\r
     <OutputPath>bin\x86\release\</OutputPath>\r
     <IntermediateOutputPath>obj\X86\$(Configuration)\</IntermediateOutputPath>\r
-    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\Win32\release\sounds;</DefineConstants>\r
+    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\..\Win32\release\sounds;</DefineConstants>\r
   </PropertyGroup>\r
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">\r
     <OutputPath>bin\x64\Debug\</OutputPath>\r
     <IntermediateOutputPath>obj\X64\$(Configuration)\</IntermediateOutputPath>\r
-    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\x64\debug\sounds;</DefineConstants>\r
+    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\..\x64\debug\sounds;</DefineConstants>\r
     <WixVariables>\r
     </WixVariables>\r
   </PropertyGroup>\r
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">\r
     <OutputPath>bin\x64\Release\</OutputPath>\r
     <IntermediateOutputPath>obj\X64\$(Configuration)\</IntermediateOutputPath>\r
-    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\x64\release\sounds;</DefineConstants>\r
+    <DefineConstants>Debug;FreeSWITCHConfFilesDir=..\..\..\..\..\conf;FreeSWITCHSoundFilesDir=..\..\..\..\..\x64\release\sounds;</DefineConstants>\r
   </PropertyGroup>\r
   <ItemGroup>\r
     <Compile Include="Fragments\FreeSWITCHConfFiles.wxs" />\r
@@ -39,7 +39,7 @@
     <Compile Include="Product.wxs" />\r
   </ItemGroup>\r
   <ItemGroup>\r
-    <ProjectReference Include="..\libs\broadvoice\src\libbroadvoice.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\broadvoice\src\libbroadvoice.2010.vcxproj">\r
       <Name>libbroadvoice</Name>\r
       <Project>{cf70f278-3364-4395-a2e1-23501c9b8ad2}</Project>\r
       <Private>True</Private>\r
@@ -48,7 +48,7 @@
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\libteletone\libteletone.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\libteletone\libteletone.2010.vcxproj">\r
       <Name>libteletone</Name>\r
       <Project>{89385c74-5860-4174-9caf-a39e7c48909c}</Project>\r
       <Private>True</Private>\r
@@ -57,7 +57,7 @@
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\spandsp\src\libspandsp.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\spandsp\src\libspandsp.2010.vcxproj">\r
       <Name>libspandsp</Name>\r
       <Project>{1cbb0077-18c5-455f-801c-0a0ce7b0bbf5}</Project>\r
       <Private>True</Private>\r
@@ -66,7 +66,7 @@
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\apr-util\libaprutil.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\apr-util\libaprutil.2010.vcxproj">\r
       <Name>libaprutil</Name>\r
       <Project>{f057da7f-79e5-4b00-845c-ef446ef055e3}</Project>\r
       <Private>True</Private>\r
@@ -75,7 +75,7 @@
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\apr\libapr.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\apr\libapr.2010.vcxproj">\r
       <Name>libapr</Name>\r
       <Project>{f6c55d93-b927-4483-bb69-15aef3dd2dff}</Project>\r
       <Private>True</Private>\r
@@ -84,7 +84,7 @@
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\js\js.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\js\js.2010.vcxproj">\r
       <Name>js</Name>\r
       <Project>{204fa0de-305d-4414-ae2e-f195a23f390d}</Project>\r
       <Private>True</Private>\r
@@ -93,7 +93,7 @@
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\openssl\libeay32.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\openssl\libeay32.2010.vcxproj">\r
       <Name>libeay32</Name>\r
       <Project>{d331904d-a00a-4694-a5a3-fcff64ab5dbe}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\openssl\openssl.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\openssl\openssl.2010.vcxproj">\r
       <Name>openssl __Libraries\openssl\openssl_</Name>\r
       <Project>{25bd39b1-c8bf-4676-a738-9cabd9c6bc79}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\openssl\ssleay32.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\openssl\ssleay32.2010.vcxproj">\r
       <Name>ssleay32</Name>\r
       <Project>{b4b62169-5ad4-4559-8707-3d933ac5db39}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\pocketsphinx\pocketsphinx.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\pocketsphinx\pocketsphinx.2010.vcxproj">\r
       <Name>pocketsphinx</Name>\r
       <Project>{94001a0e-a837-445c-8004-f918f10d0226}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\libs\win32\sphinxbase\sphinxbase.2010.vcxproj">\r
+    <ProjectReference Include="..\..\libs\win32\sphinxbase\sphinxbase.2010.vcxproj">\r
       <Name>sphinxbase</Name>\r
       <Project>{2f025ead-99bd-40f5-b2cc-f0a28cad7f2d}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_avmd\mod_avmd.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_avmd\mod_avmd.2010.vcxproj">\r
       <Name>mod_avmd</Name>\r
       <Project>{990baa76-89d3-4e38-8479-c7b28784efc8}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_commands\mod_commands.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_commands\mod_commands.2010.vcxproj">\r
       <Name>mod_commands</Name>\r
       <Project>{30a5b29c-983e-4580-9fd0-d647ccdcc7eb}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_conference\mod_conference.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_conference\mod_conference.2010.vcxproj">\r
       <Name>mod_conference</Name>\r
       <Project>{c24fb505-05d7-4319-8485-7540b44c8603}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_curl\mod_curl.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_curl\mod_curl.2010.vcxproj">\r
       <Name>mod_curl</Name>\r
       <Project>{ef300386-a8df-4372-b6d8-fb9bffca9aed}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_db\mod_db.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_db\mod_db.2010.vcxproj">\r
       <Name>mod_db</Name>\r
       <Project>{f6a33240-8f29-48bd-98f0-826995911799}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_dptools\mod_dptools.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_dptools\mod_dptools.2010.vcxproj">\r
       <Name>mod_dptools</Name>\r
       <Project>{b5881a85-fe70-4f64-8607-2caae52669c6}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_enum\mod_enum.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_enum\mod_enum.2010.vcxproj">\r
       <Name>mod_enum</Name>\r
       <Project>{71a967d5-0e99-4cef-a587-98836ee6f2ef}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_esf\mod_esf.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_esf\mod_esf.2010.vcxproj">\r
       <Name>mod_esf</Name>\r
       <Project>{3850d93a-5f24-4922-bc1c-74d08c37c256}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_expr\mod_expr.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_expr\mod_expr.2010.vcxproj">\r
       <Name>mod_expr</Name>\r
       <Project>{65a6273d-fcab-4c55-b09e-65100141a5d4}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_fifo\mod_fifo.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_fifo\mod_fifo.2010.vcxproj">\r
       <Name>mod_fifo</Name>\r
       <Project>{75df7f29-2fbf-47f7-b5af-5b4952dc1abd}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_fsv\mod_fsv.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_fsv\mod_fsv.2010.vcxproj">\r
       <Name>mod_fsv</Name>\r
       <Project>{e3246d17-e29b-4ab5-962a-c69b0c5837bb}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_lcr\mod_lcr.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_lcr\mod_lcr.2010.vcxproj">\r
       <Name>mod_lcr</Name>\r
       <Project>{1a3793d1-05d1-4b57-9b0f-5af3e79dc439}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_nibblebill\mod_nibblebill.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_nibblebill\mod_nibblebill.2010.vcxproj">\r
       <Name>mod_nibblebill</Name>\r
       <Project>{3c977801-fe88-48f2-83d3-fa2ebff6688e}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_rss\mod_rss.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_rss\mod_rss.2010.vcxproj">\r
       <Name>mod_rss</Name>\r
       <Project>{b69247fa-ecd6-40ed-8e44-5ca6c3baf9a4}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_snom\mod_snom.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_snom\mod_snom.2010.vcxproj">\r
       <Name>mod_snom</Name>\r
       <Project>{2a3d00c6-588d-4e86-81ac-9ef5ede86e03}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_spandsp\mod_spandsp.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_spandsp\mod_spandsp.2010.vcxproj">\r
       <Name>mod_spandsp</Name>\r
       <Project>{1e21afe0-6fdb-41d2-942d-863607c24b91}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_valet_parking\mod_valet_parking.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_valet_parking\mod_valet_parking.2010.vcxproj">\r
       <Name>mod_valet_parking</Name>\r
       <Project>{432db165-1eb2-4781-a9c0-71e62610b20a}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_vmd\mod_vmd.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_vmd\mod_vmd.2010.vcxproj">\r
       <Name>mod_vmd</Name>\r
       <Project>{14e4a972-9cfb-436d-b0a5-4943f3f80d47}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\applications\mod_voicemail\mod_voicemail.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\applications\mod_voicemail\mod_voicemail.2010.vcxproj">\r
       <Name>mod_voicemail</Name>\r
       <Project>{d7f1e3f2-a3f4-474c-8555-15122571af52}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\asr_tts\mod_pocketsphinx\mod_pocketsphinx.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\asr_tts\mod_pocketsphinx\mod_pocketsphinx.2010.vcxproj">\r
       <Name>mod_pocketsphinx</Name>\r
       <Project>{2286da73-9fc5-45bc-a508-85994c3317ab}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\asr_tts\mod_unimrcp\mod_unimrcp.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\asr_tts\mod_unimrcp\mod_unimrcp.2010.vcxproj">\r
       <Name>mod_unimrcp</Name>\r
       <Project>{d07c378a-f5f7-438f-adf3-4ac4fb1883cd}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_amr\mod_amr.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_amr\mod_amr.2010.vcxproj">\r
       <Name>mod_amr</Name>\r
       <Project>{8deb383c-4091-4f42-a56f-c9e46d552d79}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_celt\mod_celt.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_celt\mod_celt.vcxproj">\r
       <Name>mod_celt</Name>\r
       <Project>{4d418176-3b33-47e6-a63e-01ba34add21c}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_g723_1\mod_g723_1.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_g723_1\mod_g723_1.2010.vcxproj">\r
       <Name>mod_g723_1</Name>\r
       <Project>{fea1eef7-876f-48de-88bf-c0e3e606d758}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_g729\mod_g729.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_g729\mod_g729.2010.vcxproj">\r
       <Name>mod_g729</Name>\r
       <Project>{1d95cd95-0de2-48c3-ac23-d5c7d1c9c0f0}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_ilbc\mod_ilbc.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_ilbc\mod_ilbc.2010.vcxproj">\r
       <Name>mod_ilbc</Name>\r
       <Project>{d3ec0aff-76fc-4210-a825-9a17410660a3}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_silk\mod_silk.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_silk\mod_silk.2010.vcxproj">\r
       <Name>mod_silk</Name>\r
       <Project>{afa983d6-4569-4f88-ba94-555ed00fd9a8}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_siren\mod_siren.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_siren\mod_siren.2010.vcxproj">\r
       <Name>mod_siren</Name>\r
       <Project>{0b6c905b-142e-4999-b39d-92ff7951e921}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\codecs\mod_speex\mod_speex.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\codecs\mod_speex\mod_speex.2010.vcxproj">\r
       <Name>mod_speex</Name>\r
       <Project>{5580d60e-0f77-4716-9cd4-b8e5986fa375}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\dialplans\mod_dialplan_directory\mod_dialplan_directory.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\dialplans\mod_dialplan_directory\mod_dialplan_directory.2010.vcxproj">\r
       <Name>mod_dialplan_directory</Name>\r
       <Project>{a27cca23-1541-4337-81a4-f0a6413078a0}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\dialplans\mod_dialplan_xml\mod_dialplan_xml.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\dialplans\mod_dialplan_xml\mod_dialplan_xml.2010.vcxproj">\r
       <Name>mod_dialplan_xml</Name>\r
       <Project>{07113b25-d3af-4e04-ba77-4cd1171f022c}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\endpoints\mod_loopback\mod_loopback.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\endpoints\mod_loopback\mod_loopback.2010.vcxproj">\r
       <Name>mod_loopback</Name>\r
       <Project>{b3f424ec-3d8f-417c-b244-3919d5e1a577}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\endpoints\mod_portaudio\mod_PortAudio.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\endpoints\mod_portaudio\mod_PortAudio.2010.vcxproj">\r
       <Name>mod_PortAudio</Name>\r
       <Project>{5fd31a25-5d83-4794-8bee-904dad84ce71}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\endpoints\mod_sofia\mod_sofia.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\endpoints\mod_sofia\mod_sofia.2010.vcxproj">\r
       <Name>mod_sofia</Name>\r
       <Project>{0df3abd0-ddc0-4265-b778-07c66780979b}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\event_handlers\mod_event_multicast\mod_event_multicast.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\event_handlers\mod_event_multicast\mod_event_multicast.2010.vcxproj">\r
       <Name>mod_event_multicast</Name>\r
       <Project>{784113ef-44d9-4949-835d-7065d3c7ad08}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\event_handlers\mod_event_socket\mod_event_socket.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\event_handlers\mod_event_socket\mod_event_socket.2010.vcxproj">\r
       <Name>mod_event_socket</Name>\r
       <Project>{05515420-16de-4e63-be73-85be85ba5142}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\formats\mod_file_string\mod_file_string.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\formats\mod_file_string\mod_file_string.2010.vcxproj">\r
       <Name>mod_file_string</Name>\r
       <Project>{70564d74-199a-4452-9c60-19ed5f242f0d}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\formats\mod_local_stream\mod_local_stream.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\formats\mod_local_stream\mod_local_stream.2010.vcxproj">\r
       <Name>mod_local_stream</Name>\r
       <Project>{2ca40887-1622-46a1-a7f9-17fd7e7e545b}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\formats\mod_native_file\mod_native_file.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\formats\mod_native_file\mod_native_file.2010.vcxproj">\r
       <Name>mod_native_file</Name>\r
       <Project>{9254c4b0-6f60-42b6-bb3a-36d63fc001c7}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\formats\mod_sndfile\mod_sndfile.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\formats\mod_sndfile\mod_sndfile.2010.vcxproj">\r
       <Name>mod_sndfile</Name>\r
       <Project>{afac0568-7548-42d5-9f6a-8d3400a1e4f6}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\formats\mod_tone_stream\mod_tone_stream.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\formats\mod_tone_stream\mod_tone_stream.2010.vcxproj">\r
       <Name>mod_tone_stream</Name>\r
       <Project>{6ff941ac-82c5-429f-aa4c-ad2fb9e5da52}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\languages\mod_lua\lua\lua.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\languages\mod_lua\lua\lua.2010.vcxproj">\r
       <Name>lua51</Name>\r
       <Project>{d0b36172-cd76-454a-9b89-990025266c2a}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\languages\mod_lua\mod_lua.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\languages\mod_lua\mod_lua.2010.vcxproj">\r
       <Name>mod_lua</Name>\r
       <Project>{7b077e7f-1be7-4291-ab86-55e527b25cac}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\languages\mod_managed\mod_managed.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\languages\mod_managed\mod_managed.2010.vcxproj">\r
       <Name>mod_managed</Name>\r
       <Project>{7b42bda1-72c0-4378-a9b6-5c530f8cd61e}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\loggers\mod_console\mod_console.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\loggers\mod_console\mod_console.2010.vcxproj">\r
       <Name>mod_console</Name>\r
       <Project>{1c453396-d912-4213-89fd-9b489162b7b5}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\loggers\mod_logfile\mod_logfile.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\loggers\mod_logfile\mod_logfile.2010.vcxproj">\r
       <Name>mod_logfile</Name>\r
       <Project>{d0bcac02-d94b-46b8-9b49-cddcc2bd7909}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_de\mod_say_de.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_de\mod_say_de.2010.vcxproj">\r
       <Name>mod_say_de</Name>\r
       <Project>{5bc072db-3826-48ea-af34-fe32aa01e83b}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_en\mod_say_en.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_en\mod_say_en.2010.vcxproj">\r
       <Name>mod_say_en</Name>\r
       <Project>{988cacf7-3fcb-4992-be69-77872ae67dc8}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_es\mod_say_es.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_es\mod_say_es.2010.vcxproj">\r
       <Name>mod_say_es</Name>\r
       <Project>{fa429e98-8b03-45e6-a096-a4bc5e821de4}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_fr\mod_say_fr.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_fr\mod_say_fr.2010.vcxproj">\r
       <Name>mod_say_fr</Name>\r
       <Project>{06e3a538-ab32-44f2-b477-755ff9cb5d37}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_it\mod_say_it.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_it\mod_say_it.2010.vcxproj">\r
       <Name>mod_say_it</Name>\r
       <Project>{6d1bec70-4dcd-4fe9-adbd-4a43a67e4d05}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_nl\mod_say_nl.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_nl\mod_say_nl.2010.vcxproj">\r
       <Name>mod_say_nl</Name>\r
       <Project>{a4b122cf-5196-476b-8c0e-d8bd59ac3c14}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_ru\mod_say_ru.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_ru\mod_say_ru.2010.vcxproj">\r
       <Name>mod_say_ru</Name>\r
       <Project>{0382e8fd-cfdc-41c0-8b03-792c7c84fc31}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\say\mod_say_zh\mod_say_zh.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\say\mod_say_zh\mod_say_zh.2010.vcxproj">\r
       <Name>mod_say_zh</Name>\r
       <Project>{b6a9fb7a-1cc4-442b-812d-ec33e4e4a36e}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\xml_int\mod_xml_cdr\mod_xml_cdr.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\xml_int\mod_xml_cdr\mod_xml_cdr.2010.vcxproj">\r
       <Name>mod_xml_cdr</Name>\r
       <Project>{08dad348-9e0a-4a2e-97f1-f1e7e24a7836}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\xml_int\mod_xml_curl\mod_xml_curl.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\xml_int\mod_xml_curl\mod_xml_curl.2010.vcxproj">\r
       <Name>mod_xml_curl</Name>\r
       <Project>{ab91a099-7690-4ecf-8994-e458f4ea1ed4}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\src\mod\xml_int\mod_xml_rpc\mod_xml_rpc.2010.vcxproj">\r
+    <ProjectReference Include="..\..\src\mod\xml_int\mod_xml_rpc\mod_xml_rpc.2010.vcxproj">\r
       <Name>mod_xml_rpc</Name>\r
       <Project>{cbec7225-0c21-4da8-978e-1f158f8ad950}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>MODLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\w32\Console\FreeSwitchConsole.2010.vcxproj">\r
+    <ProjectReference Include="..\..\w32\Console\FreeSwitchConsole.2010.vcxproj">\r
       <Name>FreeSwitchConsole</Name>\r
       <Project>{1af3a893-f7be-43dd-b697-8ab2397c0d67}</Project>\r
       <Private>True</Private>\r
       <RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>\r
       <RefTargetDir>INSTALLLOCATION</RefTargetDir>\r
     </ProjectReference>\r
-    <ProjectReference Include="..\w32\Library\FreeSwitchCore.2010.vcxproj">\r
+    <ProjectReference Include="..\..\w32\Library\FreeSwitchCore.2010.vcxproj">\r
       <Name>FreeSwitchCoreLib</Name>\r
       <Project>{202d7a4e-760d-4d0e-afa1-d7459ced30ff}</Project>\r
       <Private>True</Private>\r
   </ItemGroup>\r
   <Import Project="$(WixTargetsPath)" />\r
   <PropertyGroup>\r
-    <PreBuildEvent>"$(WIX)bin\heat.exe" dir "..\..\..\..\conf" -cg FreeSWITCHConfFiles -gg -scom -sreg -sfrag -srd -dr CONFLOCATION -var var.FreeSWITCHConfFilesDir -out "$(ProjectDir)Fragments\FreeSWITCHConfFiles.wxs"\r
-"$(WIX)bin\heat.exe" dir "..\..\..\..\Win32\Release\sounds" -cg FreeSWITCHSoundFiles8 -gg -scom -sreg -sfrag -srd -dr SOUNDLOCATION -var var.FreeSWITCHSoundFilesDir -out "$(ProjectDir)Fragments\FreeSWITCHSoundFiles8.wxs"</PreBuildEvent>\r
+    <PreBuildEvent>"$(WIX)bin\heat.exe" dir "..\..\..\..\..\conf" -cg FreeSWITCHConfFiles -gg -scom -sreg -sfrag -srd -dr CONFLOCATION -var var.FreeSWITCHConfFilesDir -out "$(ProjectDir)Fragments\FreeSWITCHConfFiles.wxs"\r
+"$(WIX)bin\heat.exe" dir "..\..\..\..\..\Win32\Release\sounds" -cg FreeSWITCHSoundFiles8 -gg -scom -sreg -sfrag -srd -dr SOUNDLOCATION -var var.FreeSWITCHSoundFilesDir -out "$(ProjectDir)Fragments\FreeSWITCHSoundFiles8.wxs"</PreBuildEvent>\r
   </PropertyGroup>\r
   <!--\r
        To modify your build process, add your task inside one of the targets below and uncomment it.\r