Skip to content

Commit

Permalink
TMS-432: Consolidate projects settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Komissarov committed Apr 25, 2024
1 parent e36d209 commit bdccdd3
Show file tree
Hide file tree
Showing 14 changed files with 126 additions and 21 deletions.
19 changes: 16 additions & 3 deletions Tms.Adapter.Core/Tms.Adapter.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.5.1</Version>
<Version>1.5.2</Version>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Title>Test IT Core adapter</Title>
<PackageId>TestIT.Adapter.Core</PackageId>
<Authors>Integration team</Authors>
<Description>Test IT Core adapter</Description>
<Copyright>Copyright (c) 2019 - 2023 Test IT</Copyright>
<Copyright>Copyright (c) 2019 - 2024 Test IT</Copyright>
<RepositoryUrl>https://github.com/testit-tms/adapters-dotnet</RepositoryUrl>
<PackageProjectUrl>https://testit.software</PackageProjectUrl>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<LangVersion>default</LangVersion>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<ErrorReport>none</ErrorReport>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions Tms.Adapter.Core/Tms.Adapter.Core.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>
25 changes: 21 additions & 4 deletions Tms.Adapter.CoreTests/Tms.Adapter.CoreTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,32 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
<LangVersion>default</LangVersion>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<ErrorReport>none</ErrorReport>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2">
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
<PackageReference Include="NSubstitute" Version="5.0.0" />
<PackageReference Include="NSubstitute" Version="5.0.0">
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>
19 changes: 16 additions & 3 deletions Tms.Adapter.SpecFlowPlugin/Tms.Adapter.SpecFlowPlugin.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.5.1</Version>
<Version>1.5.2</Version>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Title>Test IT SpecFlow adapter</Title>
<PackageId>TestIT.Adapter.SpecFlowPlugin</PackageId>
<Authors>Integration team</Authors>
<Description>Test IT SpecFlow adapter</Description>
<Copyright>Copyright (c) 2019 - 2023 Test IT</Copyright>
<Copyright>Copyright (c) 2019 - 2024 Test IT</Copyright>
<RepositoryUrl>https://github.com/testit-tms/adapters-dotnet</RepositoryUrl>
<PackageProjectUrl>https://testit.software</PackageProjectUrl>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<LangVersion>default</LangVersion>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<ErrorReport>none</ErrorReport>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>
19 changes: 16 additions & 3 deletions Tms.Adapter.XUnit/Tms.Adapter.XUnit.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.5.1</Version>
<Version>1.5.2</Version>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Title>Test IT XUnit adapter</Title>
<PackageId>TestIT.Adapter.XUnit</PackageId>
<Authors>Integration team</Authors>
<Description>Test IT XUnit adapter</Description>
<Copyright>Copyright (c) 2019 - 2023 Test IT</Copyright>
<Copyright>Copyright (c) 2019 - 2024 Test IT</Copyright>
<RepositoryUrl>https://github.com/testit-tms/adapters-dotnet</RepositoryUrl>
<PackageProjectUrl>https://testit.software</PackageProjectUrl>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<LangVersion>default</LangVersion>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<ErrorReport>none</ErrorReport>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions Tms.Adapter.XUnit/Tms.Adapter.XUnit.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>
15 changes: 11 additions & 4 deletions Tms.Adapter/Tms.Adapter.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.5.1</Version>
<Version>1.5.2</Version>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Title>Test IT MSTest/UNit adapter</Title>
<PackageId>TestIT.Adapter</PackageId>
<Authors>Integration team</Authors>
<Description>Test IT MSTest/UNit adapter</Description>
<Copyright>Copyright (c) 2019 - 2023 Test IT</Copyright>
<Copyright>Copyright (c) 2019 - 2024 Test IT</Copyright>
<RepositoryUrl>https://github.com/testit-tms/adapters-dotnet</RepositoryUrl>
<PackageProjectUrl>https://testit.software</PackageProjectUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>default</LangVersion>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<ErrorReport>none</ErrorReport>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
Expand All @@ -22,11 +27,13 @@
</ItemGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>preview</LangVersion>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>preview</LangVersion>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions Tms.Adapter/Tms.Adapter.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>
20 changes: 18 additions & 2 deletions TmsRunner/TmsRunner.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,36 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.5.1</Version>
<Version>1.5.2</Version>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>Test IT runner</Title>
<Authors>Integration team</Authors>
<Description>Test IT runner</Description>
<Copyright>Copyright (c) 2019 - 2023 Test IT</Copyright>
<Copyright>Copyright (c) 2019 - 2024 Test IT</Copyright>
<RepositoryUrl>https://github.com/testit-tms/adapters-dotnet</RepositoryUrl>
<PackageProjectUrl>https://testit.software</PackageProjectUrl>
<TargetFramework>net8.0</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifiers>win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<LangVersion>default</LangVersion>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<ErrorReport>none</ErrorReport>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions TmsRunner/TmsRunner.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>
16 changes: 14 additions & 2 deletions TmsRunnerTests/TmsRunnerTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,22 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>

<TargetFramework>net8.0</TargetFramework>
<LangVersion>default</LangVersion>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<ErrorReport>none</ErrorReport>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<WarningLevel>4</WarningLevel>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions TmsRunnerTests/TmsRunnerTests.csproj.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/Daemon/ConfigureAwaitAnalysisMode/@EntryValue">Library</s:String></wpf:ResourceDictionary>

0 comments on commit bdccdd3

Please sign in to comment.