Mercurial > silverbladetech
diff SilverlightExampleApp/SilverlightExampleApp.Web/SilverlightExampleApp.Web.csproj @ 49:502f5f365649
Initial load for Silverlight Example Application
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Tue, 17 Apr 2012 17:57:52 +0100 |
parents | |
children | 3591c26bd63e |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightExampleApp/SilverlightExampleApp.Web/SilverlightExampleApp.Web.csproj Tue Apr 17 17:57:52 2012 +0100 @@ -0,0 +1,160 @@ +<?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> + </ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{9B9FB230-CA34-4A66-BE74-46EAF73CB863}</ProjectGuid> + <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>SilverlightExampleApp.Web</RootNamespace> + <AssemblyName>SilverlightExampleApp.Web</AssemblyName> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> + <UseIISExpress>true</UseIISExpress> + <SilverlightApplicationList>{37DC0FAF-3EFE-436A-B8B9-6905F9EF59E0}|..\SilverlightExampleApp\SilverlightExampleApp.csproj|ClientBin|False</SilverlightApplicationList> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + <IncludeIisSettings>false</IncludeIisSettings> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="Accessibility"> + <EmbedInteropTypes>True</EmbedInteropTypes> + </Reference> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="Microsoft.Practices.Unity, Version=2.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\Libs\Microsoft.Practices.Unity.dll</HintPath> + </Reference> + <Reference Include="PresentationCore" /> + <Reference Include="PresentationFramework" /> + <Reference Include="System.ComponentModel.DataAnnotations" /> + <Reference Include="System.Runtime.Serialization" /> + <Reference Include="System.ServiceModel" /> + <Reference Include="System.Web.DynamicData" /> + <Reference Include="System.Web.Entity" /> + <Reference Include="System.Web.ApplicationServices" /> + <Reference Include="System" /> + <Reference Include="System.Data" /> + <Reference Include="System.Core" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="System.Web.Extensions" /> + <Reference Include="System.Xaml" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Web" /> + <Reference Include="System.Xml" /> + <Reference Include="System.Configuration" /> + <Reference Include="System.Web.Services" /> + <Reference Include="System.EnterpriseServices" /> + <Reference Include="UIAutomationProvider" /> + <Reference Include="UIAutomationTypes" /> + <Reference Include="WindowsBase" /> + </ItemGroup> + <ItemGroup> + <Content Include="ClientBin\SilverlightExampleApp.xap" /> + <Content Include="Global.asax" /> + <Content Include="Secure\ClientDataService.svc" /> + <Content Include="Secure\SecureService.svc" /> + <Content Include="Services\AuthenticationService.svc" /> + <Content Include="Services\Helpers.asmx" /> + <Content Include="Silverlight.js" /> + <Content Include="index.html" /> + <Content Include="SplashScreen.js" /> + <Content Include="Web.config"> + <SubType>Designer</SubType> + </Content> + <Content Include="Web.Debug.config"> + <DependentUpon>Web.config</DependentUpon> + </Content> + <Content Include="Web.Release.config"> + <DependentUpon>Web.config</DependentUpon> + </Content> + <Content Include="default.aspx" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Factories\ClientFactory.cs" /> + <Compile Include="Factories\CountryFactory.cs" /> + <Compile Include="Factories\TitleFactory.cs" /> + <Compile Include="Global.asax.cs"> + <DependentUpon>Global.asax</DependentUpon> + </Compile> + <Compile Include="Models\Client.cs" /> + <Compile Include="Models\Country.cs" /> + <Compile Include="Models\Title.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="Repositories\ClientMockRepository.cs" /> + <Compile Include="Repositories\IRepository.cs" /> + <Compile Include="Secure\ClientDataService.svc.cs"> + <DependentUpon>ClientDataService.svc</DependentUpon> + </Compile> + <Compile Include="Secure\SecureService.svc.cs"> + <DependentUpon>SecureService.svc</DependentUpon> + </Compile> + <Compile Include="Secure\SilverlightFaultBehavior.cs" /> + <Compile Include="Services\AuthenticationService.svc.cs"> + <DependentUpon>AuthenticationService.svc</DependentUpon> + </Compile> + <Compile Include="Services\SilverlightFaultBehavior.cs" /> + <Compile Include="Services\Helpers.asmx.cs"> + <DependentUpon>Helpers.asmx</DependentUpon> + <SubType>Component</SubType> + </Compile> + </ItemGroup> + <ItemGroup> + <Page Include="SplashScreen.xaml"> + <Generator>MSBuild:Compile</Generator> + <SubType>Designer</SubType> + </Page> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\SilverlightExampleApp.Interfaces\SilverlightExampleApp.Interfaces.csproj"> + <Project>{6C96E971-4A29-462B-88CD-4C05065BFE3A}</Project> + <Name>SilverlightExampleApp.Interfaces</Name> + </ProjectReference> + </ItemGroup> + <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" /> + <ProjectExtensions> + <VisualStudio> + <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> + <WebProjectProperties> + <UseIIS>True</UseIIS> + <AutoAssignPort>True</AutoAssignPort> + <DevelopmentServerPort>0</DevelopmentServerPort> + <DevelopmentServerVPath>/</DevelopmentServerVPath> + <IISUrl>http://localhost:1233/</IISUrl> + <NTLMAuthentication>False</NTLMAuthentication> + <UseCustomServer>False</UseCustomServer> + <CustomServerUrl> + </CustomServerUrl> + <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile> + </WebProjectProperties> + </FlavorProperties> + </VisualStudio> + </ProjectExtensions> + <!-- 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> \ No newline at end of file