Skip to content

Commit 175e201

Browse files
committed
Add project files.
1 parent 1e9fea3 commit 175e201

13 files changed

+1242
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This folder can contain any file you would like to add under the Skyline DataMiner folder while installing the Automation scripts.

Directory.Build.props

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project>
2+
<PropertyGroup>
3+
<PlatformTarget>x86</PlatformTarget>
4+
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
5+
</PropertyGroup>
6+
<ItemGroup>
7+
<AdditionalFiles Include="..\Internal\Code Analysis\stylecop.json">
8+
<Link>Properties\stylecop.json</Link>
9+
</AdditionalFiles>
10+
<Content Include="..\Internal\.editorconfig">
11+
<Link>Properties\.editorconfig</Link>
12+
</Content>
13+
</ItemGroup>
14+
<ItemGroup>
15+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
16+
<PrivateAssets>all</PrivateAssets>
17+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
18+
</PackageReference>
19+
</ItemGroup>
20+
</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)