AppUpdater.csproj 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <ProjectGuid>{D5C0F474-BB63-48D6-988D-E6ADFFA2140C}</ProjectGuid>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <OutputType>Library</OutputType>
  8. <LangVersion>8.0</LangVersion>
  9. <AssemblyName>AppUpdater</AssemblyName>
  10. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  11. <WarningLevel>4</WarningLevel>
  12. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  13. </PropertyGroup>
  14. <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
  15. <PlatformTarget>AnyCPU</PlatformTarget>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  18. <OutputPath>bin\Debug\</OutputPath>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  24. <OutputPath>bin\Release\</OutputPath>
  25. <DebugSymbols>true</DebugSymbols>
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. </PropertyGroup>
  29. <ItemGroup>
  30. <Reference Include="System.Windows.Forms">
  31. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll</HintPath>
  32. </Reference>
  33. <Reference Include="System">
  34. <HintPath>C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll</HintPath>
  35. </Reference>
  36. <Reference Include="System.Xml">
  37. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System.Drawing">
  40. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System.Runtime.Serialization.Formatters.Soap">
  43. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\2.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll</HintPath>
  44. </Reference>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Microsoft.Samples.AppUpdater\AppDownloader.cs" />
  48. <Compile Include="Microsoft.Samples.AppUpdater\AppKeys.cs" />
  49. <Compile Include="Microsoft.Samples.AppUpdater\AppManifest.cs" />
  50. <Compile Include="Microsoft.Samples.AppUpdater\AppStartConfig.cs" />
  51. <Compile Include="Microsoft.Samples.AppUpdater\AppUpdater.cs">
  52. <SubType>Component</SubType>
  53. </Compile>
  54. <Compile Include="Microsoft.Samples.AppUpdater\AppVersionInfo.cs" />
  55. <Compile Include="Microsoft.Samples.AppUpdater\ChangeDetectionModes.cs" />
  56. <Compile Include="Microsoft.Samples.AppUpdater\ConfigFileMissingException.cs" />
  57. <Compile Include="Microsoft.Samples.AppUpdater\KeyValidator.cs" />
  58. <Compile Include="Microsoft.Samples.AppUpdater\NotifyUpdateFileInfoEventArgs.cs" />
  59. <Compile Include="Microsoft.Samples.AppUpdater\Resource.cs" />
  60. <Compile Include="Microsoft.Samples.AppUpdater\ResourceFiles.cs" />
  61. <Compile Include="Microsoft.Samples.AppUpdater\ServerManifest.cs" />
  62. <Compile Include="Microsoft.Samples.AppUpdater\ServerPoller.cs" />
  63. <Compile Include="Microsoft.Samples.AppUpdater\UpdateCompleteEventArgs.cs" />
  64. <Compile Include="Microsoft.Samples.AppUpdater\UpdateDetectedEventArgs.cs" />
  65. <Compile Include="Microsoft.Samples.AppUpdater\UpdateForm.cs">
  66. <SubType>Form</SubType>
  67. </Compile>
  68. <Compile Include="Microsoft.Samples.AppUpdater\UpdateLog.cs" />
  69. <Compile Include="Microsoft.Samples.AppUpdater\UpdatePhases.cs" />
  70. <Compile Include="Microsoft.Samples.AppUpdater\UpdateState.cs" />
  71. <Compile Include="Microsoft.Samples.AppUpdater\WebFileLoader.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <EmbeddedResource Include="Microsoft.Samples.AppUpdater\UpdateForm.resx" />
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. </Project>