System.Configuration.csproj 1.1 KB

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <OutputType>Library</OutputType>
  5. <AssemblyName>$(MSBuildProjectName)</AssemblyName>
  6. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  7. <NoConfig>true</NoConfig>
  8. <CodePage>65001</CodePage>
  9. <UseVSHostingProcess>false</UseVSHostingProcess>
  10. </PropertyGroup>
  11. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  12. <DefineConstants>NET_1_1,NET_2_0</DefineConstants>
  13. </PropertyGroup>
  14. <ItemGroup Condition=" '$(Configuration)|$(Platform)' == 'net_2_0|AnyCPU' ">
  15. <Reference Include="System"/>
  16. <Reference Include="System.Xml"/>
  17. <Reference Include="System.Security">
  18. <HintPath>..\lib\net_2_0\System.Security.dll</HintPath>
  19. </Reference>
  20. </ItemGroup>
  21. <Import Project="$(MSBuildProjectDirectory)\..\..\build\msbuild\Mono.Common.targets"/>
  22. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  23. <Target Name="BeforeBuild" DependsOnTargets="SetupProject">
  24. </Target>
  25. </Project>