AppUpdater.csproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  30. <LangVersion>default</LangVersion>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="System.Windows.Forms">
  34. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll</HintPath>
  35. </Reference>
  36. <Reference Include="System">
  37. <HintPath>C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System.Xml">
  40. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System.Drawing">
  43. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System.Runtime.Serialization.Formatters.Soap">
  46. <HintPath>C:\Windows\assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\2.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll</HintPath>
  47. </Reference>
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="Microsoft.Samples.AppUpdater\AppDownloader.cs" />
  51. <Compile Include="Microsoft.Samples.AppUpdater\AppKeys.cs" />
  52. <Compile Include="Microsoft.Samples.AppUpdater\AppManifest.cs" />
  53. <Compile Include="Microsoft.Samples.AppUpdater\AppStartConfig.cs" />
  54. <Compile Include="Microsoft.Samples.AppUpdater\AppUpdater.cs">
  55. <SubType>Component</SubType>
  56. </Compile>
  57. <Compile Include="Microsoft.Samples.AppUpdater\AppVersionInfo.cs" />
  58. <Compile Include="Microsoft.Samples.AppUpdater\ChangeDetectionModes.cs" />
  59. <Compile Include="Microsoft.Samples.AppUpdater\ConfigFileMissingException.cs" />
  60. <Compile Include="Microsoft.Samples.AppUpdater\KeyValidator.cs" />
  61. <Compile Include="Microsoft.Samples.AppUpdater\NotifyUpdateFileInfoEventArgs.cs" />
  62. <Compile Include="Microsoft.Samples.AppUpdater\Resource.cs" />
  63. <Compile Include="Microsoft.Samples.AppUpdater\ResourceFiles.cs" />
  64. <Compile Include="Microsoft.Samples.AppUpdater\ServerManifest.cs" />
  65. <Compile Include="Microsoft.Samples.AppUpdater\ServerPoller.cs" />
  66. <Compile Include="Microsoft.Samples.AppUpdater\UpdateCompleteEventArgs.cs" />
  67. <Compile Include="Microsoft.Samples.AppUpdater\UpdateDetectedEventArgs.cs" />
  68. <Compile Include="Microsoft.Samples.AppUpdater\UpdateForm.cs">
  69. <SubType>Form</SubType>
  70. </Compile>
  71. <Compile Include="Microsoft.Samples.AppUpdater\UpdateLog.cs" />
  72. <Compile Include="Microsoft.Samples.AppUpdater\UpdatePhases.cs" />
  73. <Compile Include="Microsoft.Samples.AppUpdater\UpdateState.cs" />
  74. <Compile Include="Microsoft.Samples.AppUpdater\WebFileLoader.cs" />
  75. <Compile Include="Properties\AssemblyInfo.cs" />
  76. </ItemGroup>
  77. <ItemGroup>
  78. <EmbeddedResource Include="Microsoft.Samples.AppUpdater\UpdateForm.resx" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <None Include="AppStart.config">
  82. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  83. </None>
  84. </ItemGroup>
  85. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  86. </Project>