Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
File renamed without changes.
25 changes: 25 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "nuget" # See documentation for possible values
# directory: "/"
directories: # Use this if you have no .sln file in your root.
- "*"
schedule:
interval: "weekly"
ignore:
# FluentAssertions equal to or higher than 8.0.0 are a different license, which requires payment
- dependency-name: "FluentAssertions"
versions: [ ">=8.0.0" ]

# DevPacks represents the DMA on which to compile. Doesn't make sense to always be on the latest version.
- dependency-name: "Skyline.DataMiner.Files.*"
- dependency-name: "Skyline.DataMiner.Dev.*"
groups:
all-dependencies:
patterns:
- "*"
379 changes: 0 additions & 379 deletions .github/workflows/Automation Master SDK Workflow.yml

This file was deleted.

417 changes: 417 additions & 0 deletions .github/workflows/DataMiner App Packages Master Workflow Custom.yml

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions .github/workflows/complete.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Skyline Reusable Quality Workflow

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: []
tags:
- "[0-9]+.[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+.[0-9]+-**"
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-**"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:

CI:
uses: SkylineCommunications/Low-Code-App-Editor/.github/workflows/DataMiner App Packages Master Workflow Custom.yml@16-duplicate-page-is-not-possible
with:
configuration: Release
referenceName: ${{ github.ref_name }}
runNumber: ${{ github.run_number }}
referenceType: ${{ github.ref_type }}
repository: ${{ github.repository }}
owner: ${{ github.repository_owner }}
sonarCloudProjectName: ${{ vars.SONAR_NAME }} # Go to 'https://sonarcloud.io/projects/create' and create a project. Then create a SONAR_NAME variable with the ID of the project as mentioned in the SonarCloud project URL.
# solutionFilterName: "MySolutionFilter.slnf"
secrets:
dataminerToken: ${{ secrets.DATAMINER_TOKEN }} # The API key: generated in the DCP Admin app (https://admin.dataminer.services/) as authentication for a certain organization.
sonarCloudToken: ${{ secrets.SONAR_TOKEN }} # The API key for access to SonarCloud.
# overrideCatalogDownloadToken: ${{ secrets.OVERRIDE_DATAMINER_TOKEN }} # Override on the dataminerToken for downloading Catalog items: generated in the DCP Admin app (https://admin.dataminer.services/) as authentication for a certain organization.
44 changes: 0 additions & 44 deletions .github/workflows/dataminer-cicd-automation.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/update-catalog-details.yml

This file was deleted.

80 changes: 0 additions & 80 deletions .githubtocatalog/auto-generated-catalog.yml

This file was deleted.

1 change: 0 additions & 1 deletion CompanionFiles/Skyline DataMiner/AboutThisFolder.md

This file was deleted.

19 changes: 13 additions & 6 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
<Project>
<PropertyGroup>
<PlatformTarget>x86</PlatformTarget>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<CodeAnalysisRuleSet>..\Internal\Code Analysis\qaction-debug.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<CodeAnalysisRuleSet>..\Internal\Code Analysis\qaction-release.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="..\Internal\Code Analysis\stylecop.json">
<AdditionalFiles Include="..\Internal\Code Analysis\stylecop.json">
<Link>Properties\stylecop.json</Link>
</AdditionalFiles>
<Content Include="..\Internal\.editorconfig">
<Content Include="..\.editorconfig">
<Link>Properties\.editorconfig</Link>
</Content>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
13 changes: 13 additions & 0 deletions Low Code App Editor Installer/Constants.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
namespace Install_1
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Constants
{
public const string InstallOptionsFileName = "InstallOptions.json";
}
}
27 changes: 27 additions & 0 deletions Low Code App Editor Installer/DOM/DomEditorException.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
namespace Install_1.DOM
{
using System;
using System.Runtime.Serialization;

[Serializable]
public class DomEditorException : Exception
{
public DomEditorException()
{
}

public DomEditorException(string message) : base(message)
{
}

public DomEditorException(string message, Exception inner) : base(message, inner)
{
}

protected DomEditorException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}
Loading