Created
June 23, 2017 00:46
-
-
Save williamscraigm/0dc5e38b779b0c671e759e87ffc6921e to your computer and use it in GitHub Desktop.
SOE105Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<PropertyGroup> | |
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
<ProductVersion>8.0.30703</ProductVersion> | |
<SchemaVersion>2.0</SchemaVersion> | |
<ProjectGuid>{E70C6DA5-D156-496E-AC85-F71B5B1EFE12}</ProjectGuid> | |
<OutputType>Library</OutputType> | |
<AppDesignerFolder>Properties</AppDesignerFolder> | |
<RootNamespace>RestSOE1</RootNamespace> | |
<AssemblyName>RestSOE1</AssemblyName> | |
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> | |
<FileAlignment>512</FileAlignment> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
<DebugSymbols>true</DebugSymbols> | |
<DebugType>full</DebugType> | |
<Optimize>false</Optimize> | |
<OutputPath>bin\Debug\</OutputPath> | |
<DefineConstants>DEBUG;TRACE</DefineConstants> | |
<ErrorReport>prompt</ErrorReport> | |
<WarningLevel>4</WarningLevel> | |
</PropertyGroup> | |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
<DebugType>pdbonly</DebugType> | |
<Optimize>true</Optimize> | |
<OutputPath>bin\Release\</OutputPath> | |
<DefineConstants>TRACE</DefineConstants> | |
<ErrorReport>prompt</ErrorReport> | |
<WarningLevel>4</WarningLevel> | |
</PropertyGroup> | |
<PropertyGroup> | |
<SignAssembly>true</SignAssembly> | |
<AssemblyOriginatorKeyFile>mykey.snk</AssemblyOriginatorKeyFile> | |
</PropertyGroup> | |
<ItemGroup> | |
<Reference Include="ESRI.ArcGIS.Carto"> | |
<SpecificVersion>False</SpecificVersion> | |
</Reference> | |
<Reference Include="ESRI.ArcGIS.Geodatabase"> | |
<SpecificVersion>False</SpecificVersion> | |
</Reference> | |
<Reference Include="ESRI.ArcGIS.Geometry"> | |
<SpecificVersion>False</SpecificVersion> | |
</Reference> | |
<Reference Include="ESRI.ArcGIS.Server"> | |
<SpecificVersion>False</SpecificVersion> | |
</Reference> | |
<Reference Include="ESRI.ArcGIS.System"> | |
<SpecificVersion>False</SpecificVersion> | |
</Reference> | |
<Reference Include="ESRI.ArcGIS.SOESupport"> | |
<SpecificVersion>False</SpecificVersion> | |
</Reference> | |
<Reference Include="System" /> | |
<Reference Include="System.Core" /> | |
<Reference Include="System.Xml.Linq" /> | |
<Reference Include="System.Data.DataSetExtensions" /> | |
<Reference Include="Microsoft.CSharp" /> | |
<Reference Include="System.Data" /> | |
<Reference Include="System.Xml" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Compile Include="RestSOE1.cs" /> | |
<Compile Include="Properties\AssemblyInfo.cs" /> | |
</ItemGroup> | |
<ItemGroup> | |
<None Include="mykey.snk" /> | |
</ItemGroup> | |
<PropertyGroup> | |
<ZipFileExtension>soe</ZipFileExtension> | |
<AddInTargetProduct>Server</AddInTargetProduct> | |
<AddInTargetVersion>10.5</AddInTargetVersion> | |
</PropertyGroup> | |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
<Import Project="$(MSBuildExtensionsPath)\ESRI\ESRI.ArcGIS.Server.SDK.targets" Condition="Exists('$(MSBuildExtensionsPath)\ESRI\ESRI.ArcGIS.Server.SDK.targets')" /> | |
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | |
Other similar extension points exist, see Microsoft.Common.targets. | |
<Target Name="BeforeBuild"> | |
</Target> | |
<Target Name="AfterBuild"> | |
</Target> | |
--> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment