Skip to content
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

Feature/broetje ventilation system #8

Merged
merged 7 commits into from
May 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
wip
  • Loading branch information
NecatiMeral committed Apr 21, 2023
commit 9e1ee87339cfef23cb2ae974c23951def0eb4307
4 changes: 2 additions & 2 deletions dotnet/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<Reference Include="LogicModule.Nodes.TestHelper">
<HintPath>$(SolutionDir)src\LogicNodesSDK\LogicModule.Nodes.TestHelper.dll</HintPath>
</Reference>

<Using Include="Xunit" />

<PackageReference Include="coverlet.collector" Version="3.1.2">
Expand Down Expand Up @@ -85,7 +85,7 @@

<!-- xunit.runner.visualstudio https://www.nuget.org/packages/xunit.runner.visualstudio -->
<xUnitRunnerVisualstudioPackageVersion>2.4.1</xUnitRunnerVisualstudioPackageVersion>

<!-- Microsoft Framework Extensions -->
<MicrosoftPackageVersion>7.0.*</MicrosoftPackageVersion>

Expand Down
7 changes: 7 additions & 0 deletions dotnet/NecatiMeral.LogicNodes.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NecatiMeral.Logic.Common",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NecatiMeral.DoorbirdX1Listener.Host", "src\NecatiMeral.DoorbirdX1Listener.Host\NecatiMeral.DoorbirdX1Listener.Host.csproj", "{570B3ED5-A839-492B-A0A1-7070E9DF0300}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NecatiMeral.Logic.Broetje", "src\NecatiMeral.Logic.Broetje\NecatiMeral.Logic.Broetje.csproj", "{F3FA65CF-C011-43B1-B4F5-6B476E2A907F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -49,6 +51,10 @@ Global
{570B3ED5-A839-492B-A0A1-7070E9DF0300}.Debug|Any CPU.Build.0 = Debug|Any CPU
{570B3ED5-A839-492B-A0A1-7070E9DF0300}.Release|Any CPU.ActiveCfg = Release|Any CPU
{570B3ED5-A839-492B-A0A1-7070E9DF0300}.Release|Any CPU.Build.0 = Release|Any CPU
{F3FA65CF-C011-43B1-B4F5-6B476E2A907F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F3FA65CF-C011-43B1-B4F5-6B476E2A907F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F3FA65CF-C011-43B1-B4F5-6B476E2A907F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F3FA65CF-C011-43B1-B4F5-6B476E2A907F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -59,6 +65,7 @@ Global
{3F1FF768-FD27-46B2-961C-B6EFDF9CB3B3} = {B4F57F38-7B57-4225-9BD4-264ABC47DE33}
{722DD859-ABFA-4B2C-94A6-5D4AD5C5F377} = {B4F57F38-7B57-4225-9BD4-264ABC47DE33}
{570B3ED5-A839-492B-A0A1-7070E9DF0300} = {B4F57F38-7B57-4225-9BD4-264ABC47DE33}
{F3FA65CF-C011-43B1-B4F5-6B476E2A907F} = {B4F57F38-7B57-4225-9BD4-264ABC47DE33}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {471310B7-D205-4EEC-A063-0A534164AB9A}
Expand Down
5 changes: 5 additions & 0 deletions dotnet/src/NecatiMeral.Logic.Broetje/BroetjeConsts.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
namespace Necati_Meral_Yahoo_De.Logic.Broetje;
internal class BroetjeConsts
{
public const int ReadWriteLength = 84;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"ExtendedData": {
"inputs": [
"TcAdsWebService.wsdl"
],
"collectionTypes": [
"System.Array",
"System.Collections.Generic.Dictionary`2"
],
"internalTypeAccess": true,
"namespaceMappings": [
"*, TcAdsWebService"
],
"targetFramework": "net45",
"typeReuseMode": "None"
}
}
Loading