Skip to content

Commit e6974d4

Browse files
committed
Add project files.
1 parent 306ee4a commit e6974d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5974
-0
lines changed

DefaultTemplates/ABOUT.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
This folder contains default templates to be used by the protocol.
2+
Allowed names:
3+
"Template_Alarm_Default.xml"
4+
"Trending_Template_Default.xml"
5+
"Information_Template_Default.xml"

Directory.Build.props

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<Project>
2+
<PropertyGroup>
3+
<PlatformTarget>x86</PlatformTarget>
4+
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
5+
</PropertyGroup>
6+
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch($(MSBuildProjectName), '^QAction_([0-9]+)$'))">
7+
<DefineConstants>$(DefineConstants);DCFv1;DBInfo;ALARM_SQUASHING</DefineConstants>
8+
</PropertyGroup>
9+
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch($(MSBuildProjectName), '^QAction_([0-9]+)$')) and '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
10+
<DebugType>full</DebugType>
11+
<CodeAnalysisRuleSet>..\Internal\Code Analysis\qaction-debug.ruleset</CodeAnalysisRuleSet>
12+
</PropertyGroup>
13+
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch($(MSBuildProjectName), '^QAction_([0-9]+)$')) and '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
14+
<DebugType>pdbonly</DebugType>
15+
<CodeAnalysisRuleSet>..\Internal\Code Analysis\qaction-release.ruleset</CodeAnalysisRuleSet>
16+
</PropertyGroup>
17+
<ItemGroup>
18+
<AdditionalFiles Include="..\Internal\Code Analysis\stylecop.json">
19+
<Link>Properties\stylecop.json</Link>
20+
</AdditionalFiles>
21+
<Content Include="..\Internal\.editorconfig">
22+
<Link>Properties\.editorconfig</Link>
23+
</Content>
24+
</ItemGroup>
25+
<ItemGroup>
26+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
27+
<PrivateAssets>all</PrivateAssets>
28+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
29+
</PackageReference>
30+
</ItemGroup>
31+
</Project>

Dlls/ABOUT.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This folder contains DLL files that should be placed under the ProtocolScripts folder of DataMiner for this solution to work correctly.

Documentation/ABOUT.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Looking for README.md? Check your Solution Root folder. This folder can be used to add documentation related to this solution.

Internal/.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
indent_size = 4
6+
tab_width = 4
7+
end_of_line = crlf
8+
trim_trailing_whitespace = true
9+
10+
[*.cs]
11+
dotnet_sort_system_directives_first = true

0 commit comments

Comments
 (0)