ln.snmp/ln.snmp.csproj

81 lines
3.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C7A43B82-55F2-4092-8DBE-6BE29CBF079D}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ln.snmp</RootNamespace>
<AssemblyName>ln.snmp</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
</ItemGroup>
<ItemGroup>
<Compile Include="SNMPEngine.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="types\Variable.cs" />
<Compile Include="BasicEncodingRules.cs" />
<Compile Include="types\Sequence.cs" />
<Compile Include="types\PDU.cs" />
<Compile Include="types\Integer.cs" />
<Compile Include="types\NullValue.cs" />
<Compile Include="types\Boolean.cs" />
<Compile Include="types\OctetString.cs" />
<Compile Include="types\ObjectIdentifier.cs" />
<Compile Include="types\Unsigned32.cs" />
<Compile Include="types\Counter64.cs" />
<Compile Include="SnmpError.cs" />
<Compile Include="endpoint\SnmpV1Endpoint.cs" />
<Compile Include="endpoint\SnmpV2Endpoint.cs" />
<Compile Include="endpoint\USMEndpoint.cs" />
<Compile Include="types\V3Packet.cs" />
<Compile Include="types\ScopedPDU.cs" />
<Compile Include="asn1\ASN1Value.cs" />
<Compile Include="types\SnmpV1Message.cs" />
<Compile Include="types\SnmpMessage.cs" />
<Compile Include="types\SnmpV2Message.cs" />
<Compile Include="types\USMMessage.cs" />
<Compile Include="types\UsmSecurityParameters.cs" />
<Compile Include="endpoint\SNMPEndpoint.cs" />
<Compile Include="SNMPInterface.cs" />
<Compile Include="rfc1213\RFC1213.cs" />
<Compile Include="types\IPAddr.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="types\" />
<Folder Include="endpoint\" />
<Folder Include="asn1\" />
<Folder Include="rfc1213\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ln.logging\ln.logging.csproj">
<Project>{D471A566-9FB6-41B2-A777-3C32874ECD0E}</Project>
<Name>ln.logging</Name>
</ProjectReference>
<ProjectReference Include="..\ln.types\ln.types.csproj">
<Project>{8D9AB9A5-E513-4BA7-A450-534F6456BF28}</Project>
<Name>ln.types</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>