diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1bc915c --- /dev/null +++ b/.gitignore @@ -0,0 +1,156 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results + +[Dd]ebug/ +[Rr]elease/ +x64/ +build/ +[Bb]in/ +[Oo]bj/ + +# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets +!packages/*/build/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.log +*.scc + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +.*crunch*.local.xml + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.Publish.xml + +# NuGet Packages Directory +## TODO: If you have NuGet Package Restore enabled, uncomment the next line +#packages/ + +# Windows Azure Build Output +csx +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +sql/ +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.[Pp]ublish.xml +*.pfx +*.publishsettings + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +App_Data/*.mdf +App_Data/*.ldf + + +#LightSwitch generated files +GeneratedArtifacts/ +_Pvt_Extensions/ +ModelManifest.xml + +# ========================= +# Windows detritus +# ========================= + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Mac desktop service store files +.DS_Store diff --git a/DD_PROXY_SYNC.sln b/DD_PROXY_SYNC.sln index eb157a6..8e69a07 100644 --- a/DD_PROXY_SYNC.sln +++ b/DD_PROXY_SYNC.sln @@ -1,22 +1,44 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.21005.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DD_PROXY_SYNC", "DD_PROXY_SYNC\DD_PROXY_SYNC.vbproj", "{DF86B67C-D3BB-455E-A281-911B9771DCF8}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.21005.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DD_PROXY_SYNC", "DD_PROXY_SYNC\DD_PROXY_SYNC.vbproj", "{DF86B67C-D3BB-455E-A281-911B9771DCF8}" +EndProject +Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "SetupWIX", "SetupWIX\SetupWIX.wixproj", "{CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Debug|x86.ActiveCfg = Debug|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Release|Any CPU.Build.0 = Release|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {DF86B67C-D3BB-455E-A281-911B9771DCF8}.Release|x86.ActiveCfg = Release|Any CPU + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Debug|Any CPU.ActiveCfg = Debug|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Debug|x86.ActiveCfg = Debug|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Debug|x86.Build.0 = Debug|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Release|Any CPU.ActiveCfg = Release|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Release|Mixed Platforms.Build.0 = Release|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Release|x86.ActiveCfg = Release|x86 + {CE2DD830-FBA9-4BAC-B7B3-82F21D52CB6F}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.exe b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.exe deleted file mode 100644 index 344ad20..0000000 Binary files a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.exe and /dev/null differ diff --git a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.exe.config b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.exe.config index 711e100..d5a1f76 100644 --- a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.exe.config +++ b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.exe.config @@ -1,22 +1,22 @@ - - - - -
- - - - - - - - - - - - False - - - + + + + +
+ + + + + + + + + + + + False + + + \ No newline at end of file diff --git a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.pdb b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.pdb deleted file mode 100644 index 48fd9c6..0000000 Binary files a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.pdb and /dev/null differ diff --git a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.config b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.config index 711e100..d5a1f76 100644 --- a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.config +++ b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.config @@ -1,22 +1,22 @@ - - - - -
- - - - - - - - - - - - False - - - + + + + +
+ + + + + + + + + + + + False + + + \ No newline at end of file diff --git a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.manifest b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.manifest index f96b1d6..061c9ca 100644 --- a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.manifest +++ b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.vshost.exe.manifest @@ -1,11 +1,11 @@ - - - - - - - - - - - + + + + + + + + + + + diff --git a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.xml b/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.xml deleted file mode 100644 index 0ad3660..0000000 --- a/DD_PROXY_SYNC/bin/Debug/DD_PROXY_SYNC.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - -DD_PROXY_SYNC - - - - - - Returns the cached ResourceManager instance used by this class. - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - \ No newline at end of file diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.DD_PROXY_SERV.resources b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.DD_PROXY_SERV.resources deleted file mode 100644 index 6c05a97..0000000 Binary files a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.DD_PROXY_SERV.resources and /dev/null differ diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.ProjectInstaller.resources b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.ProjectInstaller.resources deleted file mode 100644 index 6c05a97..0000000 Binary files a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.ProjectInstaller.resources and /dev/null differ diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.Resources.resources b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.Resources.resources deleted file mode 100644 index 6c05a97..0000000 Binary files a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.Resources.resources and /dev/null differ diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.exe b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.exe deleted file mode 100644 index 344ad20..0000000 Binary files a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.exe and /dev/null differ diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.pdb b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.pdb deleted file mode 100644 index 48fd9c6..0000000 Binary files a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.pdb and /dev/null differ diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.vbproj.FileListAbsolute.txt b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.vbproj.FileListAbsolute.txt index 5238543..3ade6a2 100644 --- a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.vbproj.FileListAbsolute.txt +++ b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.vbproj.FileListAbsolute.txt @@ -1,15 +1,16 @@ -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.exe.config -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.exe -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.pdb -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.xml -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.Resources.resources -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.ProjectInstaller.resources -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.DD_PROXY_SERV.resources -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.vbproj.GenerateResource.Cache -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.exe -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.xml -E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.pdb -E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.exe.config -E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.exe -E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.xml -E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.pdb +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.exe.config +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.exe +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.pdb +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.xml +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.Resources.resources +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.ProjectInstaller.resources +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.DD_PROXY_SERV.resources +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.vbproj.GenerateResource.Cache +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.exe +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.xml +E:\SchreiberM\Visual Studio\GIT\DD_PROXY_SYNC\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.pdb +E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.exe.config +E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.exe +E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.xml +E:\SchreiberM\Visual Studio\GIT\DDProxySync\DD_PROXY_SYNC\obj\Debug\DD_PROXY_SYNC.pdb +E:\JenneJ\Visual Studio\Git\DDProxySync\DD_PROXY_SYNC\bin\Debug\DD_PROXY_SYNC.exe.config diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.vbproj.GenerateResource.Cache b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.vbproj.GenerateResource.Cache deleted file mode 100644 index 995101e..0000000 Binary files a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.vbproj.GenerateResource.Cache and /dev/null differ diff --git a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.xml b/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.xml deleted file mode 100644 index 0ad3660..0000000 --- a/DD_PROXY_SYNC/obj/Debug/DD_PROXY_SYNC.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - -DD_PROXY_SYNC - - - - - - Returns the cached ResourceManager instance used by this class. - - - - Overrides the current thread's CurrentUICulture property for all - resource lookups using this strongly typed resource class. - - - - A strongly-typed resource class, for looking up localized strings, etc. - - - - \ No newline at end of file diff --git a/DD_PROXY_SYNC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/DD_PROXY_SYNC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index f5a7331..6b1c13c 100644 Binary files a/DD_PROXY_SYNC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/DD_PROXY_SYNC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/SetupWIX/Config.wxi b/SetupWIX/Config.wxi new file mode 100644 index 0000000..fb78ded --- /dev/null +++ b/SetupWIX/Config.wxi @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/SetupWIX/Product.wxs b/SetupWIX/Product.wxs new file mode 100644 index 0000000..aa3cacb --- /dev/null +++ b/SetupWIX/Product.wxs @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + + + + + + + + \ No newline at end of file diff --git a/SetupWIX/SetupWIX.wixproj b/SetupWIX/SetupWIX.wixproj new file mode 100644 index 0000000..40159e6 --- /dev/null +++ b/SetupWIX/SetupWIX.wixproj @@ -0,0 +1,67 @@ + + + + Debug + x86 + 3.9 + ce2dd830-fba9-4bac-b7b3-82f21d52cb6f + 2.0 + SetupWIX + Package + $(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets + $(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets + + + bin\$(Configuration)\ + obj\$(Configuration)\ + Debug + -b "$(SolutionDir)DD_PROXY_SYNC\bin\$(Configuration)" -cultures:de-DE,en-GB,en-US + + + bin\$(Configuration)\ + obj\$(Configuration)\ + + + + + + + $(WixExtDir)\WixUtilExtension.dll + WixUtilExtension + + + $(WixExtDir)\WixUIExtension.dll + WixUIExtension + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file