PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/Otp/Otp.csproj

https://github.com/saleyn/otp.net
MSBuild | 137 lines | 137 code | 0 blank | 0 comment | 0 complexity | 7d32898236885f41a03ac73fa857a3b4 MD5 | raw file
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProjectGuid>{9A16CEEB-FC26-4D35-8F9E-42DA30212F69}</ProjectGuid>
  7. <OutputType>Library</OutputType>
  8. <NoStandardLibraries>false</NoStandardLibraries>
  9. <AssemblyName>otp</AssemblyName>
  10. <RootNamespace>otp</RootNamespace>
  11. <SignAssembly>true</SignAssembly>
  12. <AssemblyOriginatorKeyFile>dotnet_keyfile.snk</AssemblyOriginatorKeyFile>
  13. <FileUpgradeFlags>
  14. </FileUpgradeFlags>
  15. <OldToolsVersion>3.5</OldToolsVersion>
  16. <UpgradeBackupLocation>
  17. </UpgradeBackupLocation>
  18. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  19. <PublishUrl>publish\</PublishUrl>
  20. <Install>true</Install>
  21. <InstallFrom>Disk</InstallFrom>
  22. <UpdateEnabled>false</UpdateEnabled>
  23. <UpdateMode>Foreground</UpdateMode>
  24. <UpdateInterval>7</UpdateInterval>
  25. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  26. <UpdatePeriodically>false</UpdatePeriodically>
  27. <UpdateRequired>false</UpdateRequired>
  28. <MapFileExtensions>true</MapFileExtensions>
  29. <ApplicationRevision>0</ApplicationRevision>
  30. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  31. <IsWebBootstrapper>false</IsWebBootstrapper>
  32. <UseApplicationTrust>false</UseApplicationTrust>
  33. <BootstrapperEnabled>true</BootstrapperEnabled>
  34. <TargetFrameworkProfile />
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  37. <DebugSymbols>true</DebugSymbols>
  38. <DebugType>full</DebugType>
  39. <Optimize>false</Optimize>
  40. <OutputPath>.\bin\Debug\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. </PropertyGroup>
  43. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  44. <DebugType>pdbonly</DebugType>
  45. <Optimize>true</Optimize>
  46. <OutputPath>.\bin\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Reference Include="System" />
  51. <Reference Include="System.configuration" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="AbstractConnection.cs" />
  56. <Compile Include="AbstractNode.cs" />
  57. <Compile Include="AssemblyInfo.cs" />
  58. <Compile Include="Erlang\Atom.cs" />
  59. <Compile Include="Erlang\BigInteger.cs" />
  60. <Compile Include="Erlang\Binary.cs" />
  61. <Compile Include="Erlang\Boolean.cs" />
  62. <Compile Include="Erlang\Byte.cs" />
  63. <Compile Include="Erlang\Char.cs" />
  64. <Compile Include="Erlang\CloneObject.cs" />
  65. <Compile Include="Erlang\Double.cs" />
  66. <Compile Include="Erlang\ErlangException.cs" />
  67. <Compile Include="Erlang\Exception.cs" />
  68. <Compile Include="Erlang\Exit.cs" />
  69. <Compile Include="Erlang\Format.cs" />
  70. <Compile Include="Erlang\Int.cs" />
  71. <Compile Include="Erlang\List.cs" />
  72. <Compile Include="Erlang\Long.cs" />
  73. <Compile Include="Erlang\Object.cs" />
  74. <Compile Include="Erlang\PatternMatcher.cs" />
  75. <Compile Include="Erlang\Pid.cs" />
  76. <Compile Include="Erlang\Port.cs" />
  77. <Compile Include="Erlang\Ref.cs" />
  78. <Compile Include="Erlang\Short.cs" />
  79. <Compile Include="Erlang\String.cs" />
  80. <Compile Include="Erlang\Tuple.cs" />
  81. <Compile Include="Erlang\UInt.cs" />
  82. <Compile Include="Erlang\UShort.cs" />
  83. <Compile Include="Erlang\Var.cs" />
  84. <Compile Include="Erlang\VarBind.cs" />
  85. <Compile Include="GenericQueue.cs" />
  86. <Compile Include="Link.cs" />
  87. <Compile Include="Links.cs" />
  88. <Compile Include="OtpAuthException.cs" />
  89. <Compile Include="OtpConnection.cs" />
  90. <Compile Include="OtpCookedConnection.cs" />
  91. <Compile Include="OtpEpmd.cs" />
  92. <Compile Include="OtpException.cs" />
  93. <Compile Include="OtpExternal.cs" />
  94. <Compile Include="OtpInputStream.cs" />
  95. <Compile Include="OtpLocalNode.cs" />
  96. <Compile Include="OtpMbox.cs" />
  97. <Compile Include="OtpMsg.cs" />
  98. <Compile Include="OtpNode.cs" />
  99. <Compile Include="OtpNodeStatus.cs" />
  100. <Compile Include="OtpOutputStream.cs" />
  101. <Compile Include="OtpPeer.cs" />
  102. <Compile Include="OtpSelf.cs" />
  103. <Compile Include="OtpServer.cs" />
  104. <Compile Include="OtpSystem.cs" />
  105. <Compile Include="OtpTrace.cs" />
  106. <Compile Include="SupportClass.cs" />
  107. <Compile Include="Test.cs" />
  108. </ItemGroup>
  109. <ItemGroup>
  110. <None Include="App.config" />
  111. <None Include="ClassDiagram1.cd" />
  112. <None Include="dotnet_keyfile.snk" />
  113. </ItemGroup>
  114. <ItemGroup>
  115. <Content Include="Erlang\BigIntegerDoc.html" />
  116. <Content Include="release_notes.txt" />
  117. </ItemGroup>
  118. <ItemGroup>
  119. <Folder Include="Properties\" />
  120. </ItemGroup>
  121. <ItemGroup>
  122. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  123. <Visible>False</Visible>
  124. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  125. <Install>false</Install>
  126. </BootstrapperPackage>
  127. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  128. <Visible>False</Visible>
  129. <ProductName>.NET Framework 3.5 SP1</ProductName>
  130. <Install>true</Install>
  131. </BootstrapperPackage>
  132. </ItemGroup>
  133. <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
  134. <ProjectExtensions>
  135. <VisualStudio AllowExistingFolder="true" />
  136. </ProjectExtensions>
  137. </Project>