IPAddressControlLib.csproj 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" 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>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{A5ED2B33-5644-47C4-BC30-A4840F67FF87}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>IPAddressControlLib</RootNamespace>
  12. <AssemblyName>IPAddressControlLib</AssemblyName>
  13. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <TargetFrameworkProfile>
  16. </TargetFrameworkProfile>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>TRACE;DEBUG;CODE_ANALYSIS</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  27. <RunCodeAnalysis>true</RunCodeAnalysis>
  28. <CodeAnalysisIgnoreGeneratedCode>false</CodeAnalysisIgnoreGeneratedCode>
  29. <Prefer32Bit>false</Prefer32Bit>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE;CODE_ANALYSIS</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. <CodeAnalysisIgnoreGeneratedCode>false</CodeAnalysisIgnoreGeneratedCode>
  39. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  40. <RunCodeAnalysis>true</RunCodeAnalysis>
  41. <Prefer32Bit>false</Prefer32Bit>
  42. </PropertyGroup>
  43. <PropertyGroup>
  44. <SignAssembly>true</SignAssembly>
  45. </PropertyGroup>
  46. <PropertyGroup>
  47. <AssemblyOriginatorKeyFile>REGENERATE_KEY_FOR_PUBLIC_USE.snk</AssemblyOriginatorKeyFile>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Reference Include="System" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Design" />
  53. <Reference Include="System.Drawing" />
  54. <Reference Include="Microsoft.CSharp" />
  55. <Reference Include="System.Windows.Forms" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="DotControl.cs">
  59. <SubType>Component</SubType>
  60. </Compile>
  61. <Compile Include="FieldChangedEventArgs.cs" />
  62. <Compile Include="FieldControl.cs">
  63. <SubType>Component</SubType>
  64. </Compile>
  65. <Compile Include="IPAddressControl.cs">
  66. <SubType>Component</SubType>
  67. </Compile>
  68. <Compile Include="IPAddressControlDesigner.cs" />
  69. <Compile Include="NativeMethods.cs" />
  70. <Compile Include="Properties\AssemblyInfo.cs" />
  71. <Compile Include="Properties\Resources.Designer.cs">
  72. <AutoGen>True</AutoGen>
  73. <DesignTime>True</DesignTime>
  74. <DependentUpon>Resources.resx</DependentUpon>
  75. </Compile>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <EmbeddedResource Include="Properties\Resources.resx">
  79. <Generator>ResXFileCodeGenerator</Generator>
  80. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  81. </EmbeddedResource>
  82. </ItemGroup>
  83. <ItemGroup>
  84. <None Include="REGENERATE_KEY_FOR_PUBLIC_USE.snk" />
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>