⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 chatdemo.csproj

📁 ICE3.3.0--聊天程序服务器端demo
💻 CSPROJ
字号:
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.21022</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{67008863-BAE6-4A6C-A2AD-F002B28ADB49}</ProjectGuid>
    <ProjectTypeGuids>{A1591282-1198-4647-A2B1-27E5FF5F6F3B};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>ChatDemo</RootNamespace>
    <AssemblyName>ChatDemo</AssemblyName>
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    <SilverlightApplication>true</SilverlightApplication>
    <SupportedCultures>
    </SupportedCultures>
    <XapOutputs>true</XapOutputs>
    <GenerateSilverlightManifest>true</GenerateSilverlightManifest>
    <XapFilename>ChatDemo.xap</XapFilename>
    <SilverlightManifestTemplate>Properties\AppManifest.xml</SilverlightManifestTemplate>
    <SilverlightAppEntry>ChatDemo.App</SilverlightAppEntry>
    <TestPageFileName>TestPage.html</TestPageFileName>
    <CreateTestPage>true</CreateTestPage>
    <ValidateXaml>true</ValidateXaml>
    <ThrowErrorsInValidation>false</ThrowErrorsInValidation>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>Bin\Debug</OutputPath>
    <DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
    <NoStdLib>true</NoStdLib>
    <NoConfig>true</NoConfig>
    <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;SILVERLIGHT</DefineConstants>
    <NoStdLib>true</NoStdLib>
    <NoConfig>true</NoConfig>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="IceSL, Version=0.3.3.0, Culture=neutral, PublicKeyToken=1f998c50fec78381, processorArchitecture=MSIL">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>$(IceSLAssembly)</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Windows" />
    <Reference Include="mscorlib" />
    <Reference Include="system" />
    <Reference Include="System.Core" />
    <Reference Include="System.Net" />
    <Reference Include="System.Xml" />
    <Reference Include="System.Windows.Browser" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="App.xaml.cs">
      <DependentUpon>App.xaml</DependentUpon>
    </Compile>
    <Compile Include="ChatUtils.cs" />
    <Compile Include="Coordinator.xaml.cs">
      <DependentUpon>Coordinator.xaml</DependentUpon>
    </Compile>
    <Compile Include="generated\Chat.cs" />
    <Compile Include="generated\PollingChat.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup>
    <ApplicationDefinition Include="App.xaml">
      <Generator>MSBuild:MarkupCompilePass1</Generator>
      <SubType>Designer</SubType>
    </ApplicationDefinition>
  </ItemGroup>
  <ItemGroup>
    <None Include="Properties\AppManifest.xml" />
  </ItemGroup>
  <ItemGroup>
    <Page Include="Coordinator.xaml">
      <Generator>MSBuild:MarkupCompilePass1</Generator>
      <SubType>Designer</SubType>
    </Page>
  </ItemGroup>
  <Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight\v2.0\Microsoft.Silverlight.CSharp.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>
  -->
  <Target Name="CompileSlice">
    <Exec Command="$(Slice2Sl) --output-dir generated -I..\..\..\..\slice ..\..\..\..\slice\Chat.ice" />
    <Exec Command="$(Slice2Sl) --output-dir generated  -I $(SliceDir) -I..\..\..\..\slice ..\..\..\..\slice\PollingChat.ice" />
  </Target>
  <Target Name="AfterClean">
    <Delete Files="generated\Chat.cs" />
    <Delete Files="generated\PollingChat.cs" />
  </Target>
  <PropertyGroup>
    <CompileDependsOn>
      CompileSlice;$(CompileDependsOn)
    </CompileDependsOn>
  </PropertyGroup>
  <Choose>
    <When Condition="Exists('$(ICE_SL_HOME)\bin\slice2sl.exe')">
      <PropertyGroup>
        <Slice2Sl>$(ICE_SL_HOME)\bin\slice2sl.exe</Slice2Sl>
	<SliceDir>$(ICE_SL_HOME)\slice</SliceDir>
        <IceSlAssembly>$(ICE_SL_HOME)\bin\IceSL.dll</IceSlAssembly>
      </PropertyGroup>
    </When>
    <When Condition="Exists('..\..\..\..\cpp\bin\slice2sl.exe')">
      <PropertyGroup>
        <Slice2Sl>..\..\..\..\cpp\bin\slice2sl.exe</Slice2Sl>
	<SliceDir>..\..\..\..\sl\slice</SliceDir>
        <IceSlAssembly>..\..\..\..\sl\bin\IceSL.dll</IceSlAssembly>
      </PropertyGroup>
    </When>
    <Otherwise>
      <PropertyGroup>
        <Slice2Sl>C:\IceSL-0.3.3\bin\slice2sl.exe</Slice2Sl>
	<SliceDir>C:\IceSL-0.3.3\slice</SliceDir>
        <IceSlAssembly>C:\IceSL-0.3.3\bin\IceSL.dll</IceSlAssembly>
      </PropertyGroup>
    </Otherwise>
  </Choose>
  <ProjectExtensions>
    <VisualStudio>
      <FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
        <SilverlightProjectProperties />
      </FlavorProperties>
    </VisualStudio>
  </ProjectExtensions>
</Project>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -