dotNetFileBrowser.csproj
上传用户:idontwrong
上传日期:2022-04-03
资源大小:13k
文件大小:3k
源码类别:

TreeView控件

开发平台:

C#

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  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>{1013493A-59B1-4DFA-AC8D-E0DC079924A7}</ProjectGuid>
  8.     <OutputType>WinExe</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>dotNetFileBrowser</RootNamespace>
  11.     <AssemblyName>dotNetFileBrowser</AssemblyName>
  12.   </PropertyGroup>
  13.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14.     <DebugSymbols>true</DebugSymbols>
  15.     <DebugType>full</DebugType>
  16.     <Optimize>false</Optimize>
  17.     <OutputPath>binDebug</OutputPath>
  18.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  19.     <ErrorReport>prompt</ErrorReport>
  20.     <WarningLevel>4</WarningLevel>
  21.   </PropertyGroup>
  22.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23.     <DebugType>pdbonly</DebugType>
  24.     <Optimize>true</Optimize>
  25.     <OutputPath>binRelease</OutputPath>
  26.     <DefineConstants>TRACE</DefineConstants>
  27.     <ErrorReport>prompt</ErrorReport>
  28.     <WarningLevel>4</WarningLevel>
  29.   </PropertyGroup>
  30.   <ItemGroup>
  31.     <Reference Include="System" />
  32.     <Reference Include="System.Data" />
  33.     <Reference Include="System.Deployment" />
  34.     <Reference Include="System.Drawing" />
  35.     <Reference Include="System.Windows.Forms" />
  36.     <Reference Include="System.Xml" />
  37.   </ItemGroup>
  38.   <ItemGroup>
  39.     <Compile Include="Form1.cs">
  40.       <SubType>Form</SubType>
  41.     </Compile>
  42.     <Compile Include="Form1.Designer.cs">
  43.       <DependentUpon>Form1.cs</DependentUpon>
  44.     </Compile>
  45.     <Compile Include="Program.cs" />
  46.     <Compile Include="PropertiesAssemblyInfo.cs" />
  47.     <EmbeddedResource Include="PropertiesResources.resx">
  48.       <Generator>ResXFileCodeGenerator</Generator>
  49.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  50.       <SubType>Designer</SubType>
  51.     </EmbeddedResource>
  52.     <Compile Include="PropertiesResources.Designer.cs">
  53.       <AutoGen>True</AutoGen>
  54.       <DependentUpon>Resources.resx</DependentUpon>
  55.     </Compile>
  56.     <None Include="PropertiesSettings.settings">
  57.       <Generator>SettingsSingleFileGenerator</Generator>
  58.       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  59.     </None>
  60.     <Compile Include="PropertiesSettings.Designer.cs">
  61.       <AutoGen>True</AutoGen>
  62.       <DependentUpon>Settings.settings</DependentUpon>
  63.       <DesignTimeSharedInput>True</DesignTimeSharedInput>
  64.     </Compile>
  65.   </ItemGroup>
  66.   <Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
  67.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  68.        Other similar extension points exist, see Microsoft.Common.targets.
  69.   <Target Name="BeforeBuild">
  70.   </Target>
  71.   <Target Name="AfterBuild">
  72.   </Target>
  73.   -->
  74. </Project>