1 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5 <ProductVersion>9.0.20727</ProductVersion>
6 <SchemaVersion>2.0</SchemaVersion>
7 <ProjectGuid>{BCFCB3AA-50D3-492F-A3F6-A7AB0AA836D3}</ProjectGuid>
8 <OutputType>Library</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>AlbumService</RootNamespace>
11 <AssemblyName>service</AssemblyName>
16 <UpgradeBackupLocation>
17 </UpgradeBackupLocation>
18 <OldToolsVersion>2.0</OldToolsVersion>
19 <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
21 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22 <DebugSymbols>true</DebugSymbols>
23 <DebugType>full</DebugType>
24 <Optimize>false</Optimize>
25 <OutputPath>bin\</OutputPath>
26 <DefineConstants>DEBUG;TRACE</DefineConstants>
27 <ErrorReport>prompt</ErrorReport>
28 <WarningLevel>4</WarningLevel>
30 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31 <DebugType>pdbonly</DebugType>
32 <Optimize>true</Optimize>
33 <OutputPath>bin\Release\</OutputPath>
34 <DefineConstants>TRACE</DefineConstants>
35 <ErrorReport>prompt</ErrorReport>
36 <WarningLevel>4</WarningLevel>
39 <Reference Include="System" />
40 <Reference Include="System.Runtime.Serialization" />
41 <Reference Include="System.ServiceModel" />
44 <Compile Include="AlbumTrack.cs" />
45 <Compile Include="IAlbumService.cs" />
46 <Compile Include="Properties\AssemblyInfo.cs" />
47 <Compile Include="service.cs" />
50 <None Include="Web.config" />
51 <None Include="service.svc" />
53 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
56 mkdir %SystemDrive%\inetpub\wwwroot\servicemodelsamples
57 mkdir %SystemDrive%\inetpub\wwwroot\servicemodelsamples\bin
58 copy "$(TargetDir)service.dll" %SystemDrive%\inetpub\wwwroot\servicemodelsamples\bin
59 copy "$(ProjectDir)service.svc" %SystemDrive%\inetpub\wwwroot\servicemodelsamples
60 copy "$(ProjectDir)web.config" %SystemDrive%\inetpub\wwwroot\servicemodelsamples