PageRenderTime 44ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 1ms

/Visual Studio 2008/CSListFilesInDirectory/CSListFilesInDirectory.csproj

#
MSBuild | 85 lines | 78 code | 0 blank | 7 comment | 0 complexity | faeab2151295c8125c11df2d82706cba MD5 | raw file
  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>{EE102AD6-AC99-43A4-A5D2-970829A7DFC1}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CSListFilesInDirectory</RootNamespace>
  12. <AssemblyName>CSListFilesInDirectory</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <StartupObject>CSListFilesInDirectory.Program</StartupObject>
  16. <TargetFrameworkSubset>Full</TargetFrameworkSubset>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\Debug\</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>..\Release\</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.Drawing" />
  41. <Reference Include="System.Windows.Forms" />
  42. <Reference Include="System.Xml.Linq">
  43. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  44. </Reference>
  45. <Reference Include="System.Data.DataSetExtensions">
  46. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  47. </Reference>
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="FileEnumerator.cs" />
  53. <Compile Include="MainForm.cs">
  54. <SubType>Form</SubType>
  55. </Compile>
  56. <Compile Include="MainForm.Designer.cs">
  57. <DependentUpon>MainForm.cs</DependentUpon>
  58. </Compile>
  59. <Compile Include="Program.cs" />
  60. <Compile Include="Properties\AssemblyInfo.cs" />
  61. <Compile Include="Properties\Resources.Designer.cs" />
  62. <Compile Include="Properties\Settings.Designer.cs" />
  63. <Compile Include="NativeMethods.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Content Include="ReadMe.txt" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <None Include="Properties\Settings.settings" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <EmbeddedResource Include="MainForm.resx">
  73. <DependentUpon>MainForm.cs</DependentUpon>
  74. </EmbeddedResource>
  75. <EmbeddedResource Include="Properties\Resources.resx" />
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  79. Other similar extension points exist, see Microsoft.Common.targets.
  80. <Target Name="BeforeBuild">
  81. </Target>
  82. <Target Name="AfterBuild">
  83. </Target>
  84. -->
  85. </Project>