LauncherUpdater.csproj 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <!--Project was exported from assembly: C:\Users\Administrator\Desktop\Launcher\New folder\LauncherUpdater.exe-->
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{3626DC35-20ED-476A-B9A3-047B88C5FCB9}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AssemblyName>LauncherUpdater</AssemblyName>
  10. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  11. <ApplicationVersion>1.0.0.0</ApplicationVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <RootNamespace>LauncherUpdater</RootNamespace>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Newtonsoft.Json">
  36. <HintPath>lib\Newtonsoft.Json.dll</HintPath>
  37. </Reference>
  38. <Reference Include="PresentationCore" />
  39. <Reference Include="PresentationFramework" />
  40. <Reference Include="System" />
  41. <Reference Include="System.Net.Http" />
  42. <Reference Include="System.Xaml" />
  43. <Reference Include="WindowsBase" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="App.cs" />
  47. <Compile Include="Properties\Resources.cs" />
  48. <Compile Include="Properties\Settings.cs" />
  49. <Compile Include="HTTP\HttpRequest.cs" />
  50. <Compile Include="Response\ResponseListLauncherFiles.cs" />
  51. <Compile Include="Response\Files.cs" />
  52. <Compile Include="Function\EncryptionHelper.cs" />
  53. <Compile Include="Function\FileConfig.cs" />
  54. <Compile Include="Function\Configuration.cs" />
  55. <Compile Include="Function\Crc32.cs" />
  56. <Compile Include="Function\Logger.cs" />
  57. <Compile Include="MainWindow.xaml.cs">
  58. <DependentUpon>mainwindow.xaml</DependentUpon>
  59. <SubType>Code</SubType>
  60. </Compile>
  61. <Compile Include="AssemblyInfo.cs" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <Resource Include="data\img\update_bar.png" />
  65. <Resource Include="icon4.ico" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <EmbeddedResource Include="Properties\Resources.resx" />
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Page Include="mainwindow.xaml">
  72. <Generator>MSBuild:Compile</Generator>
  73. <SubType>Designer</SubType>
  74. </Page>
  75. </ItemGroup>
  76. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  77. </Project>