Script for upgrading certain versions of AME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
3.1 KiB

1 year ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{DD855BAB-FA5B-458D-8F42-F2F5E7866D0E}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ame_upgrade_script</RootNamespace>
  11. <AssemblyName>ame_upgrade_script</AssemblyName>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <ApplicationIcon>console.ico</ApplicationIcon>
  16. <ApplicationManifest>app.manifest</ApplicationManifest>
  17. <LangVersion>8</LangVersion>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <PlatformTarget>x64</PlatformTarget>
  31. <DebugType>embedded</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  38. <Prefer32bit>false</Prefer32bit>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="System" />
  42. <Reference Include="System.Core" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.Windows.Forms" />
  45. <Reference Include="System.Xml" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="ConsoleTUI.cs" />
  49. <Compile Include="NSudo.cs" />
  50. <Compile Include="ParentProcess.cs" />
  51. <Compile Include="Program.cs" />
  52. <Compile Include="Properties\AssemblyInfo.cs" />
  53. <Compile Include="Registry.cs" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Content Include="app.manifest" />
  57. </ItemGroup>
  58. <ItemGroup>
  59. <None Include="console.ico" />
  60. </ItemGroup>
  61. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  62. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  63. Other similar extension points exist, see Microsoft.Common.targets.
  64. <Target Name="BeforeBuild">
  65. </Target>
  66. <Target Name="AfterBuild">
  67. </Target>
  68. -->
  69. </Project>