-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into DataMinerType
- Loading branch information
Showing
7 changed files
with
90 additions
and
128 deletions.
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
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,57 +1,48 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Skyline.DataMiner.CICD.Parsers.Common</AssemblyName> | ||
<RootNamespace>Skyline.DataMiner.CICD.Parsers.Common</RootNamespace> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Authors>SkylineCommunications</Authors> | ||
<Company>Skyline Communications</Company> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageProjectUrl>https://skyline.be/</PackageProjectUrl> | ||
<PackageTags>Skyline;DataMiner;CICD</PackageTags> | ||
<Description>Library providing Common methods to parse DataMiner XML files.</Description> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Skyline.DataMiner.CICD.Parsers.Common</AssemblyName> | ||
<RootNamespace>Skyline.DataMiner.CICD.Parsers.Common</RootNamespace> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Authors>SkylineCommunications</Authors> | ||
<Company>Skyline Communications</Company> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageProjectUrl>https://skyline.be/</PackageProjectUrl> | ||
<PackageTags>Skyline;DataMiner;CICD</PackageTags> | ||
<Description>Library providing Common methods to parse DataMiner XML files.</Description> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\_NuGetItems\icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\_NuGetItems\LICENSE.txt"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\README.md" Pack="true" PackagePath="" /> | ||
<None Include="..\_NuGetItems\icon.png" Pack="true" PackagePath="" /> | ||
<None Include="..\_NuGetItems\LICENSE.txt" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NuGet.Frameworks" Version="6.6.1" /> | ||
<PackageReference Include="Skyline.DataMiner.CICD.FileSystem" Version="1.0.6" /> | ||
<PackageReference Include="Skyline.DataMiner.CICD.Loggers" Version="1.0.3" /> | ||
<PackageReference Include="System.Reflection.Metadata" Version="5.0.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="NuGet.Frameworks" Version="6.6.1" /> | ||
<PackageReference Include="Skyline.DataMiner.CICD.FileSystem" Version="1.0.6" /> | ||
<PackageReference Include="Skyline.DataMiner.CICD.Loggers" Version="1.0.3" /> | ||
<PackageReference Include="System.Reflection.Metadata" Version="5.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<SonarQubeSetting Include="sonar.exclusions"> | ||
<Value>Xml/**, XmlEdit/**</Value> | ||
</SonarQubeSetting> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<SonarQubeSetting Include="sonar.exclusions"> | ||
<Value>Xml/**, XmlEdit/**</Value> | ||
</SonarQubeSetting> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<InternalsVisibleTo Include="Skyline.DataMiner.CICD.Parsers.Protocol" /> | ||
<InternalsVisibleTo Include="Assemblers.AutomationTests" /> | ||
<InternalsVisibleTo Include="Assemblers.ProtocolTests" /> | ||
<InternalsVisibleTo Include="Parsers.CommonTests" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<InternalsVisibleTo Include="Skyline.DataMiner.CICD.Parsers.Protocol" /> | ||
<InternalsVisibleTo Include="Assemblers.AutomationTests" /> | ||
<InternalsVisibleTo Include="Assemblers.ProtocolTests" /> | ||
<InternalsVisibleTo Include="Parsers.CommonTests" /> | ||
</ItemGroup> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,38 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Skyline.DataMiner.CICD.Parsers.Protocol</AssemblyName> | ||
<RootNamespace>Skyline.DataMiner.CICD.Parsers.Protocol</RootNamespace> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Authors>SkylineCommunications</Authors> | ||
<Company>Skyline Communications</Company> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageProjectUrl>https://skyline.be/</PackageProjectUrl> | ||
<PackageTags>Skyline;DataMiner;CICD</PackageTags> | ||
<Description>Library providing methods to parse DataMiner Protocol XML files.</Description> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<AssemblyName>Skyline.DataMiner.CICD.Parsers.Protocol</AssemblyName> | ||
<RootNamespace>Skyline.DataMiner.CICD.Parsers.Protocol</RootNamespace> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<Authors>SkylineCommunications</Authors> | ||
<Company>Skyline Communications</Company> | ||
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile> | ||
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageProjectUrl>https://skyline.be/</PackageProjectUrl> | ||
<PackageTags>Skyline;DataMiner;CICD</PackageTags> | ||
<Description>Library providing methods to parse DataMiner Protocol XML files.</Description> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<RepositoryUrl>https://github.com/SkylineCommunications/Skyline.DataMiner.CICD.Parsers</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\_NuGetItems\icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
<None Include="..\_NuGetItems\LICENSE.txt"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\README.md" Pack="true" PackagePath="" /> | ||
<None Include="..\_NuGetItems\icon.png" Pack="true" PackagePath="" /> | ||
<None Include="..\_NuGetItems\LICENSE.txt" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Parsers.Common\Parsers.Common.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Parsers.Common\Parsers.Common.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<SonarQubeSetting Include="sonar.exclusions"> | ||
<Value>Xml/**</Value> | ||
</SonarQubeSetting> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<SonarQubeSetting Include="sonar.exclusions"> | ||
<Value>Xml/**</Value> | ||
</SonarQubeSetting> | ||
</ItemGroup> | ||
|
||
</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