-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1750c7b
commit 18eb7e7
Showing
5 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
Solutions/Ais.Net.Models.Specs/Ais.Net.Models.Specs.csproj
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="$(EndjinProjectPropsPath)" Condition="$(EndjinProjectPropsPath) != ''" /> | ||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<LangVersion>latest</LangVersion> | ||
<IsPackable>false</IsPackable> | ||
<RootNamespace>Corvus.Configuration.Specs</RootNamespace> | ||
<!-- Disabling SA1204 because it prioritizes static/non-static over public/non-public, which doesn't fit very well | ||
with bindings in SpecFlow. | ||
Disabling SA1600, SA1602 (all public types and members to be documented) because test projects need to make lots of types | ||
public for technical reasaons, but they are not meant for public consumption, so XML doc comments are only | ||
appropriate if they aid understanding within the project. | ||
--> | ||
<NoWarn>RCS1029;SA0001;SA1204;SA1600;SA1602;CS1591</NoWarn> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Endjin.RecommendedPractices" Version="1.2.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Corvus.Testing.SpecFlow.NUnit" Version="1.3.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Ais.Net.Models\Ais.Net.Models.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="nested.settings.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="flattened.settings.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="specflow.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Steps\" /> | ||
</ItemGroup> | ||
</Project> |
1 change: 1 addition & 0 deletions
1
Solutions/Ais.Net.Models.Specs/Features/AisMessageType18.feature
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
Feature: AisMessageType18 |
78 changes: 78 additions & 0 deletions
78
Solutions/Ais.Net.Models.Specs/Features/AisMessageType18.feature.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// <copyright file="GlobalSuppressions.cs" company="Endjin Limited"> | ||
// Copyright (c) Endjin Limited. All rights reserved. | ||
// </copyright> | ||
|
||
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage( | ||
"StyleCop.CSharp.OrderingRules", | ||
"SA1210:Using directives should be ordered alphabetically by namespace", | ||
Justification = "We need this until https://github.com/SpecFlowOSS/SpecFlow/issues/1828 is fixed")] | ||
|
||
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage( | ||
"StyleCop.CSharp.OrderingRules", | ||
"SA1633:Using directives should be ordered alphabetically by namespace", | ||
Justification = "We need this until https://github.com/SpecFlowOSS/SpecFlow/issues/1828 is fixed")] |
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