SL4Demo.csproj
上传用户:haqqyyuan
上传日期:2021-05-06
资源大小:26k
文件大小:5k
源码类别:

SilverLight

开发平台:

C#

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3.   <PropertyGroup>
  4.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6.     <ProductVersion>8.0.50727</ProductVersion>
  7.     <SchemaVersion>2.0</SchemaVersion>
  8.     <ProjectGuid>{0F92250B-D9E7-4CE3-9B86-A7F28B552695}</ProjectGuid>
  9.     <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
  10.     <OutputType>Library</OutputType>
  11.     <AppDesignerFolder>Properties</AppDesignerFolder>
  12.     <RootNamespace>SL4Demo</RootNamespace>
  13.     <AssemblyName>SL4Demo</AssemblyName>
  14.     <TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
  15.     <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  16.     <SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
  17.     <SilverlightApplication>true</SilverlightApplication>
  18.     <SupportedCultures>
  19.     </SupportedCultures>
  20.     <XapOutputs>true</XapOutputs>
  21.     <GenerateSilverlightManifest>true</GenerateSilverlightManifest>
  22.     <XapFilename>SL4Demo.xap</XapFilename>
  23.     <SilverlightManifestTemplate>PropertiesAppManifest.xml</SilverlightManifestTemplate>
  24.     <SilverlightAppEntry>SL4Demo.App</SilverlightAppEntry>
  25.     <TestPageFileName>TestPage.html</TestPageFileName>
  26.     <CreateTestPage>true</CreateTestPage>
  27.     <ValidateXaml>true</ValidateXaml>
  28.     <EnableOutOfBrowser>false</EnableOutOfBrowser>
  29.     <OutOfBrowserSettingsFile>PropertiesOutOfBrowserSettings.xml</OutOfBrowserSettingsFile>
  30.     <UsePlatformExtensions>false</UsePlatformExtensions>
  31.     <ThrowErrorsInValidation>true</ThrowErrorsInValidation>
  32.     <LinkedServerProject>
  33.     </LinkedServerProject>
  34.   </PropertyGroup>
  35.   <!-- This property group is only here to support building this project using the 
  36.        MSBuild 3.5 toolset. In order to work correctly with this older toolset, it needs 
  37.        to set the TargetFrameworkVersion to v3.5 -->
  38.   <PropertyGroup Condition="'$(MSBuildToolsVersion)' == '3.5'">
  39.     <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  40.   </PropertyGroup>
  41.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  42.     <DebugSymbols>true</DebugSymbols>
  43.     <DebugType>full</DebugType>
  44.     <Optimize>false</Optimize>
  45.     <OutputPath>BinDebug</OutputPath>
  46.     <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
  47.     <NoStdLib>true</NoStdLib>
  48.     <NoConfig>true</NoConfig>
  49.     <ErrorReport>prompt</ErrorReport>
  50.     <WarningLevel>4</WarningLevel>
  51.   </PropertyGroup>
  52.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  53.     <DebugType>pdbonly</DebugType>
  54.     <Optimize>true</Optimize>
  55.     <OutputPath>BinRelease</OutputPath>
  56.     <DefineConstants>TRACE;SILVERLIGHT</DefineConstants>
  57.     <NoStdLib>true</NoStdLib>
  58.     <NoConfig>true</NoConfig>
  59.     <ErrorReport>prompt</ErrorReport>
  60.     <WarningLevel>4</WarningLevel>
  61.   </PropertyGroup>
  62.   <ItemGroup>
  63.     <Reference Include="mscorlib" />
  64.     <Reference Include="System.Windows" />
  65.     <Reference Include="system" />
  66.     <Reference Include="System.Core" />
  67.     <Reference Include="System.Net" />
  68.     <Reference Include="System.Xml" />
  69.     <Reference Include="System.Windows.Browser" />
  70.   </ItemGroup>
  71.   <ItemGroup>
  72.     <Compile Include="App.xaml.cs">
  73.       <DependentUpon>App.xaml</DependentUpon>
  74.     </Compile>
  75.     <Compile Include="MainPage.xaml.cs">
  76.       <DependentUpon>MainPage.xaml</DependentUpon>
  77.     </Compile>
  78.     <Compile Include="PropertiesAssemblyInfo.cs" />
  79.   </ItemGroup>
  80.   <ItemGroup>
  81.     <ApplicationDefinition Include="App.xaml">
  82.       <SubType>Designer</SubType>
  83.       <Generator>MSBuild:Compile</Generator>
  84.     </ApplicationDefinition>
  85.     <Page Include="MainPage.xaml">
  86.       <SubType>Designer</SubType>
  87.       <Generator>MSBuild:Compile</Generator>
  88.     </Page>
  89.   </ItemGroup>
  90.   <ItemGroup>
  91.     <None Include="PropertiesAppManifest.xml" />
  92.   </ItemGroup>
  93.   <Import Project="$(MSBuildExtensionsPath32)MicrosoftSilverlight$(SilverlightVersion)Microsoft.Silverlight.CSharp.targets" />
  94.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  95.        Other similar extension points exist, see Microsoft.Common.targets.
  96.   <Target Name="BeforeBuild">
  97.   </Target>
  98.   <Target Name="AfterBuild">
  99.   </Target>
  100.   -->
  101.   <ProjectExtensions>
  102.     <VisualStudio>
  103.       <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
  104.         <SilverlightProjectProperties />
  105.       </FlavorProperties>
  106.     </VisualStudio>
  107.   </ProjectExtensions>
  108. </Project>