序列化与反序列化.csproj
上传用户:hpq1101
上传日期:2022-05-15
资源大小:56k
文件大小:4k
源码类别:

xml/soap/webservice

开发平台:

Others

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" 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>9.0.30729</ProductVersion>
  7.     <SchemaVersion>2.0</SchemaVersion>
  8.     <ProjectGuid>{1E89B556-D31B-44CC-A43A-41D0B8A06020}</ProjectGuid>
  9.     <OutputType>Exe</OutputType>
  10.     <AppDesignerFolder>Properties</AppDesignerFolder>
  11.     <RootNamespace>序列化与反序列化</RootNamespace>
  12.     <AssemblyName>序列化与反序列化</AssemblyName>
  13.     <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14.     <FileAlignment>512</FileAlignment>
  15.     <StartupObject>
  16.     </StartupObject>
  17.   </PropertyGroup>
  18.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19.     <DebugSymbols>true</DebugSymbols>
  20.     <DebugType>full</DebugType>
  21.     <Optimize>false</Optimize>
  22.     <OutputPath>binDebug</OutputPath>
  23.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  24.     <ErrorReport>prompt</ErrorReport>
  25.     <WarningLevel>4</WarningLevel>
  26.   </PropertyGroup>
  27.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28.     <DebugType>pdbonly</DebugType>
  29.     <Optimize>true</Optimize>
  30.     <OutputPath>binRelease</OutputPath>
  31.     <DefineConstants>TRACE</DefineConstants>
  32.     <ErrorReport>prompt</ErrorReport>
  33.     <WarningLevel>4</WarningLevel>
  34.   </PropertyGroup>
  35.   <ItemGroup>
  36.     <Reference Include="System" />
  37.     <Reference Include="System.Core">
  38.       <RequiredTargetFramework>3.5</RequiredTargetFramework>
  39.     </Reference>
  40.     <Reference Include="System.Json, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  41.       <SpecificVersion>False</SpecificVersion>
  42.       <HintPath>....System.Json.dll</HintPath>
  43.     </Reference>
  44.     <Reference Include="System.Runtime.Serialization">
  45.       <RequiredTargetFramework>3.0</RequiredTargetFramework>
  46.     </Reference>
  47.     <Reference Include="System.Runtime.Serialization.Formatters.Soap" />
  48.     <Reference Include="System.ServiceModel.Web">
  49.       <RequiredTargetFramework>3.5</RequiredTargetFramework>
  50.     </Reference>
  51.     <Reference Include="System.Xml.Linq">
  52.       <RequiredTargetFramework>3.5</RequiredTargetFramework>
  53.     </Reference>
  54.     <Reference Include="System.Data.DataSetExtensions">
  55.       <RequiredTargetFramework>3.5</RequiredTargetFramework>
  56.     </Reference>
  57.     <Reference Include="System.Data" />
  58.     <Reference Include="System.Deployment" />
  59.     <Reference Include="System.Drawing" />
  60.     <Reference Include="System.Windows.Forms" />
  61.     <Reference Include="System.Xml" />
  62.   </ItemGroup>
  63.   <ItemGroup>
  64.     <Compile Include="SerializationEx.cs" />
  65.     <Compile Include="PropertiesAssemblyInfo.cs" />
  66.     <EmbeddedResource Include="PropertiesResources.resx">
  67.       <Generator>ResXFileCodeGenerator</Generator>
  68.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  69.       <SubType>Designer</SubType>
  70.     </EmbeddedResource>
  71.     <Compile Include="PropertiesResources.Designer.cs">
  72.       <AutoGen>True</AutoGen>
  73.       <DependentUpon>Resources.resx</DependentUpon>
  74.     </Compile>
  75.     <None Include="PropertiesSettings.settings">
  76.       <Generator>SettingsSingleFileGenerator</Generator>
  77.       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  78.     </None>
  79.     <Compile Include="PropertiesSettings.Designer.cs">
  80.       <AutoGen>True</AutoGen>
  81.       <DependentUpon>Settings.settings</DependentUpon>
  82.       <DesignTimeSharedInput>True</DesignTimeSharedInput>
  83.     </Compile>
  84.   </ItemGroup>
  85.   <Import Project="$(MSBuildToolsPath)Microsoft.CSharp.targets" />
  86.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  87.        Other similar extension points exist, see Microsoft.Common.targets.
  88.   <Target Name="BeforeBuild">
  89.   </Target>
  90.   <Target Name="AfterBuild">
  91.   </Target>
  92.   -->
  93. </Project>