Application.csproj
上传用户:hbhltzc
上传日期:2022-06-04
资源大小:1925k
文件大小:4k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
  2.   <PropertyGroup>
  3.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5.     <ProductVersion>8.0.50727</ProductVersion>
  6.     <SchemaVersion>2.0</SchemaVersion>
  7.     <ProjectGuid>{07661035-BFE2-4169-ADEF-364839871457}</ProjectGuid>
  8.     <OutputType>WinExe</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>XmlNotepad</RootNamespace>
  11.     <AssemblyName>XmlNotepad</AssemblyName>
  12.     <ApplicationIcon>ResourcesXmlNote.ico</ApplicationIcon>
  13.     <StartupObject>XmlNotepad.Program</StartupObject>
  14.     <SignAssembly>true</SignAssembly>
  15.     <AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
  16.     <DelaySign>true</DelaySign>
  17.     <FileUpgradeFlags>
  18.     </FileUpgradeFlags>
  19.     <UpgradeBackupLocation>
  20.     </UpgradeBackupLocation>
  21.     <SccProjectName>
  22.     </SccProjectName>
  23.     <SccLocalPath>
  24.     </SccLocalPath>
  25.     <SccAuxPath>
  26.     </SccAuxPath>
  27.     <SccProvider>
  28.     </SccProvider>
  29.   </PropertyGroup>
  30.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  31.     <DebugSymbols>true</DebugSymbols>
  32.     <DebugType>full</DebugType>
  33.     <Optimize>false</Optimize>
  34.     <OutputPath>binDebug</OutputPath>
  35.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  36.     <ErrorReport>prompt</ErrorReport>
  37.     <WarningLevel>4</WarningLevel>
  38.   </PropertyGroup>
  39.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  40.     <DebugType>pdbonly</DebugType>
  41.     <Optimize>true</Optimize>
  42.     <OutputPath>binRelease</OutputPath>
  43.     <DefineConstants>TRACE</DefineConstants>
  44.     <ErrorReport>prompt</ErrorReport>
  45.     <WarningLevel>4</WarningLevel>
  46.   </PropertyGroup>
  47.   <ItemGroup>
  48.     <Reference Include="System" />
  49.     <Reference Include="System.Data" />
  50.     <Reference Include="System.Deployment" />
  51.     <Reference Include="System.Drawing" />
  52.     <Reference Include="System.Windows.Forms" />
  53.     <Reference Include="System.Xml" />
  54.   </ItemGroup>
  55.   <ItemGroup>
  56.     <Compile Include="MyForm.cs">
  57.       <SubType>Form</SubType>
  58.     </Compile>
  59.     <Compile Include="Program.cs">
  60.     </Compile>
  61.     <Compile Include="PropertiesAssemblyInfo.cs" />
  62.     <EmbeddedResource Include="PropertiesResources.resx">
  63.       <Generator>ResXFileCodeGenerator</Generator>
  64.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  65.       <SubType>Designer</SubType>
  66.     </EmbeddedResource>
  67.     <Compile Include="PropertiesResources.Designer.cs">
  68.       <AutoGen>True</AutoGen>
  69.       <DependentUpon>Resources.resx</DependentUpon>
  70.       <DesignTime>True</DesignTime>
  71.     </Compile>
  72.     <None Include="Key.snk" />
  73.     <None Include="PropertiesSettings.settings">
  74.       <Generator>SettingsSingleFileGenerator</Generator>
  75.       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  76.     </None>
  77.     <Compile Include="PropertiesSettings.Designer.cs">
  78.       <AutoGen>True</AutoGen>
  79.       <DependentUpon>Settings.settings</DependentUpon>
  80.       <DesignTimeSharedInput>True</DesignTimeSharedInput>
  81.     </Compile>
  82.   </ItemGroup>
  83.   <ItemGroup>
  84.     <ProjectReference Include="..XmlNotepadXmlNotepad.csproj">
  85.       <Project>{E401BDD0-8862-4818-98BD-83E457607E16}</Project>
  86.       <Name>XmlNotepad</Name>
  87.     </ProjectReference>
  88.   </ItemGroup>
  89.   <ItemGroup>
  90.     <Content Include="ResourcesXmlNote.ico" />
  91.   </ItemGroup>
  92.   <Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
  93.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  94.        Other similar extension points exist, see Microsoft.Common.targets.
  95.   <Target Name="BeforeBuild">
  96.   </Target>
  97.   <Target Name="AfterBuild">
  98.   </Target>
  99.   -->
  100.   <PropertyGroup>
  101.     <PostBuildEvent>"$(SolutionDir)PublishDrop.cmd" "$(TargetDir)" &gt; "$(SolutionDir)Publish.log"</PostBuildEvent>
  102.   </PropertyGroup>
  103. </Project>