-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bacnet 1.0.20 beta #3
Open
nastymorbol
wants to merge
2
commits into
ela-compil:master
Choose a base branch
from
nastymorbol:bacnet-1.0.20-beta
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -249,4 +249,5 @@ paket-files/ | |
|
||
# JetBrains Rider | ||
.idea/ | ||
*.sln.iml | ||
*.sln.iml | ||
AnotherStorageImplementation/packages.config | ||
181 changes: 93 additions & 88 deletions
181
AnotherStorageImplementation/AnotherStorageImplementation.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,95 +1,100 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | ||
<ProductVersion>8.0.30703</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{EE8E3C58-371E-4164-93DA-13D055D5BDDE}</ProjectGuid> | ||
<OutputType>Exe</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>BaCSharp</RootNamespace> | ||
<AssemblyName>AnotherStorageImplementation</AssemblyName> | ||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | ||
<TargetFrameworkProfile>Client</TargetFrameworkProfile> | ||
<FileAlignment>512</FileAlignment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> | ||
<DebugSymbols>true</DebugSymbols> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<DebugType>full</DebugType> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<ErrorReport>prompt</ErrorReport> | ||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'"> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<Optimize>true</Optimize> | ||
<DebugType>pdbonly</DebugType> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<ErrorReport>prompt</ErrorReport> | ||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="BACnet, Version=1.0.8.5, Culture=neutral, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\BACnet.1.0.8.5-alpha\lib\net40\BACnet.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net40\Newtonsoft.Json.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="PacketDotNet, Version=0.13.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\PacketDotNet.0.13.0\lib\net\PacketDotNet.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="SharpPcap, Version=4.2.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\SharpPcap.4.2.0\lib\net\SharpPcap.dll</HintPath> | ||
<Private>True</Private> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="BacnetActivity.cs" /> | ||
<Compile Include="BacnetObjects\AnalogInput.cs" /> | ||
<Compile Include="BacnetObjects\AnalogObject.cs" /> | ||
<Compile Include="BacnetObjects\AnalogObjectEvent.cs" /> | ||
<Compile Include="BacnetObjects\AnalogOutput.cs" /> | ||
<Compile Include="BacnetObjects\BacnetFile.cs" /> | ||
<Compile Include="BacnetObjects\BaCSharpObject.cs" /> | ||
<Compile Include="BacnetObjects\BaCSharpType.cs" /> | ||
<Compile Include="BacnetObjects\BinaryInput.cs" /> | ||
<Compile Include="BacnetObjects\BinaryObject.cs" /> | ||
<Compile Include="BacnetObjects\BinaryOutput.cs" /> | ||
<Compile Include="BacnetObjects\Calendar.cs" /> | ||
<Compile Include="BacnetObjects\CharacterString.cs" /> | ||
<Compile Include="BacnetObjects\DeviceObject.cs" /> | ||
<Compile Include="BacnetObjects\MultiStateInput.cs" /> | ||
<Compile Include="BacnetObjects\MultiStateOutput.cs" /> | ||
<Compile Include="BacnetObjects\NotificationClass.cs" /> | ||
<Compile Include="BacnetObjects\Schedule.cs" /> | ||
<Compile Include="BacnetObjects\StructuredView.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Include="BacnetObjects\TrendLog.cs" /> | ||
<Compile Include="BacnetObjects\TrendLogCustom.cs" /> | ||
<Compile Include="Program.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="Subscription.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform> | ||
<ProductVersion>8.0.30703</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{EE8E3C58-371E-4164-93DA-13D055D5BDDE}</ProjectGuid> | ||
<OutputType>Exe</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>BaCSharp</RootNamespace> | ||
<AssemblyName>AnotherStorageImplementation</AssemblyName> | ||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | ||
<TargetFrameworkProfile>Client</TargetFrameworkProfile> | ||
<FileAlignment>512</FileAlignment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"> | ||
<DebugSymbols>true</DebugSymbols> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<DebugType>full</DebugType> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<ErrorReport>prompt</ErrorReport> | ||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'"> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<Optimize>true</Optimize> | ||
<DebugType>pdbonly</DebugType> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<ErrorReport>prompt</ErrorReport> | ||
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Common.Logging, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL"> | ||
<HintPath>C:\Users\sschulze.PLUETH\source\repos\BACnetCommand\packages\Common.Logging.3.4.1\lib\net40\Common.Logging.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Common.Logging.Core, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL"> | ||
<HintPath>C:\Users\sschulze.PLUETH\source\repos\BACnetCommand\packages\Common.Logging.Core.3.4.1\lib\net40\Common.Logging.Core.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> | ||
<HintPath>C:\Users\sschulze.PLUETH\source\repos\BACnetCommand\packages\Newtonsoft.Json.11.0.1\lib\net40\Newtonsoft.Json.dll</HintPath> | ||
</Reference> | ||
<Reference Include="PacketDotNet, Version=0.16.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
<HintPath>C:\Users\sschulze.PLUETH\source\repos\BACnetCommand\packages\PacketDotNet.0.16.0\lib\PacketDotNet.dll</HintPath> | ||
</Reference> | ||
<Reference Include="SharpPcap, Version=4.4.0.0, Culture=neutral, processorArchitecture=MSIL"> | ||
<HintPath>C:\Users\sschulze.PLUETH\source\repos\BACnetCommand\packages\SharpPcap.4.4.0\lib\SharpPcap.dll</HintPath> | ||
</Reference> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hintpaths are invalid! use relative paths |
||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="BacnetActivity.cs" /> | ||
<Compile Include="BacnetObjects\AnalogInput.cs" /> | ||
<Compile Include="BacnetObjects\AnalogObject.cs" /> | ||
<Compile Include="BacnetObjects\AnalogObjectEvent.cs" /> | ||
<Compile Include="BacnetObjects\AnalogOutput.cs" /> | ||
<Compile Include="BacnetObjects\BacnetFile.cs" /> | ||
<Compile Include="BacnetObjects\BaCSharpObject.cs" /> | ||
<Compile Include="BacnetObjects\BaCSharpType.cs" /> | ||
<Compile Include="BacnetObjects\BinaryInput.cs" /> | ||
<Compile Include="BacnetObjects\BinaryObject.cs" /> | ||
<Compile Include="BacnetObjects\BinaryOutput.cs" /> | ||
<Compile Include="BacnetObjects\Calendar.cs" /> | ||
<Compile Include="BacnetObjects\CharacterString.cs" /> | ||
<Compile Include="BacnetObjects\DeviceObject.cs" /> | ||
<Compile Include="BacnetObjects\MultiStateInput.cs" /> | ||
<Compile Include="BacnetObjects\MultiStateOutput.cs" /> | ||
<Compile Include="BacnetObjects\NotificationClass.cs" /> | ||
<Compile Include="BacnetObjects\Schedule.cs" /> | ||
<Compile Include="BacnetObjects\StructuredView.cs"> | ||
<SubType>Code</SubType> | ||
</Compile> | ||
<Compile Include="BacnetObjects\TrendLog.cs" /> | ||
<Compile Include="BacnetObjects\TrendLogCustom.cs" /> | ||
<Compile Include="Program.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="Subscription.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\BACnet\BACnet.csproj"> | ||
<Project>{66832876-01fc-4b7c-8d92-54195773fabf}</Project> | ||
<Name>BACnet</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
--> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="BACnet" version="1.0.8.5-alpha" targetFramework="net40-client" /> | ||
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net40-client" /> | ||
<package id="PacketDotNet" version="0.13.0" targetFramework="net40-client" /> | ||
<package id="SharpPcap" version="4.2.0" targetFramework="net40-client" /> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="BACnet" version="1.0.20-beta" targetFramework="net40-client" /> | ||
<package id="Common.Logging" version="3.4.1" targetFramework="net40-client" /> | ||
<package id="Common.Logging.Core" version="3.4.1" targetFramework="net40-client" /> | ||
<package id="Newtonsoft.Json" version="11.0.1" targetFramework="net40-client" /> | ||
<package id="PacketDotNet" version="0.16.0" targetFramework="net40-client" /> | ||
<package id="SharpPcap" version="4.4.0" targetFramework="net40-client" /> | ||
</packages> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did you add packages.config to ignored?