BatchWrapper.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{E64CD92E-2D2C-48F1-B6B1-A7AF819B06F1}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>BatchWrapper</RootNamespace>
  10. <AssemblyName>BatchWrapper</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <LangVersion>8.0</LangVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <Deterministic>true</Deterministic>
  16. <IsWebBootstrapper>false</IsWebBootstrapper>
  17. <PublishUrl>publish\</PublishUrl>
  18. <Install>true</Install>
  19. <InstallFrom>Disk</InstallFrom>
  20. <UpdateEnabled>false</UpdateEnabled>
  21. <UpdateMode>Foreground</UpdateMode>
  22. <UpdateInterval>7</UpdateInterval>
  23. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  24. <UpdatePeriodically>false</UpdatePeriodically>
  25. <UpdateRequired>false</UpdateRequired>
  26. <MapFileExtensions>true</MapFileExtensions>
  27. <ApplicationRevision>0</ApplicationRevision>
  28. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  29. <UseApplicationTrust>false</UseApplicationTrust>
  30. <BootstrapperEnabled>true</BootstrapperEnabled>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  33. <PlatformTarget>AnyCPU</PlatformTarget>
  34. <DebugSymbols>true</DebugSymbols>
  35. <DebugType>full</DebugType>
  36. <Optimize>false</Optimize>
  37. <OutputPath>bin\Debug\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. </PropertyGroup>
  42. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  43. <PlatformTarget>AnyCPU</PlatformTarget>
  44. <DebugType>pdbonly</DebugType>
  45. <Optimize>true</Optimize>
  46. <OutputPath>bin\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Reference Include="Microsoft.Azure.Batch.Conventions.Files, Version=3.5.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  53. <HintPath>..\packages\Microsoft.Azure.Batch.Conventions.Files.3.5.1\lib\net461\Microsoft.Azure.Batch.Conventions.Files.dll</HintPath>
  54. </Reference>
  55. <Reference Include="Microsoft.Rest.ClientRuntime, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
  56. <HintPath>..\packages\Microsoft.Rest.ClientRuntime.2.3.24\lib\net461\Microsoft.Rest.ClientRuntime.dll</HintPath>
  57. <Private>True</Private>
  58. </Reference>
  59. <Reference Include="Microsoft.WindowsAzure.Storage, Version=9.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  60. <HintPath>..\packages\WindowsAzure.Storage.9.3.3\lib\net45\Microsoft.WindowsAzure.Storage.dll</HintPath>
  61. </Reference>
  62. <Reference Include="System" />
  63. <Reference Include="System.Core" />
  64. <Reference Include="System.Net" />
  65. <Reference Include="System.Net.Http.WebRequest" />
  66. <Reference Include="System.Runtime" />
  67. <Reference Include="System.Runtime.Serialization" />
  68. <Reference Include="System.Web" />
  69. <Reference Include="System.Xml.Linq" />
  70. <Reference Include="System.Data.DataSetExtensions" />
  71. <Reference Include="Microsoft.CSharp" />
  72. <Reference Include="System.Data" />
  73. <Reference Include="System.Net.Http" />
  74. <Reference Include="System.Xml" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <Compile Include="ActionType.cs" />
  78. <Compile Include="Constants.cs" />
  79. <Compile Include="Payload.cs" />
  80. <Compile Include="Program.cs" />
  81. </ItemGroup>
  82. <ItemGroup>
  83. <None Include="App.config" />
  84. <None Include="packages.config" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
  88. <Visible>False</Visible>
  89. <ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName>
  90. <Install>true</Install>
  91. </BootstrapperPackage>
  92. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  93. <Visible>False</Visible>
  94. <ProductName>.NET Framework 3.5 SP1</ProductName>
  95. <Install>false</Install>
  96. </BootstrapperPackage>
  97. </ItemGroup>
  98. <ItemGroup>
  99. <Folder Include="Properties\" />
  100. </ItemGroup>
  101. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  102. </Project>