Skip to content

Commit

Permalink
platform independent execution dll
Browse files Browse the repository at this point in the history
  • Loading branch information
CaringDev committed Aug 11, 2023
1 parent c9ac4e9 commit d999824
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changelog

## vNext
## 2.5.3

* platform independent execution dll
* use locked-mode restore in CI

## 2.5.2
Expand Down
1 change: 0 additions & 1 deletion src/LambdaTale.Execution/LambdaTale.Execution.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AssemblyName>LambdaTale.Execution.dotnet</AssemblyName>
<CodeAnalysisRuleSet>LambdaTale.Execution.ruleset</CodeAnalysisRuleSet>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<NoWarn>$(NoWarn);CS1591</NoWarn>
Expand Down
3 changes: 0 additions & 3 deletions src/LambdaTale.Execution/Properties/AssemblyInfo.cs

This file was deleted.

4 changes: 2 additions & 2 deletions src/LambdaTale/LambdaTale.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<file src="bin\Release\netstandard2.0\LambdaTale.dll" target="lib\netstandard2.0" />
<file src="bin\Release\netstandard2.0\LambdaTale.pdb" target="lib\netstandard2.0" />
<file src="bin\Release\netstandard2.0\LambdaTale.xml" target="lib\netstandard2.0" />
<file src="..\LambdaTale.Execution\bin\Release\netstandard2.0\LambdaTale.Execution.dotnet.dll" target="lib\netstandard2.0" />
<file src="..\LambdaTale.Execution\bin\Release\netstandard2.0\LambdaTale.Execution.dotnet.pdb" target="lib\netstandard2.0" />
<file src="..\LambdaTale.Execution\bin\Release\netstandard2.0\LambdaTale.Execution.dll" target="lib\netstandard2.0" />
<file src="..\LambdaTale.Execution\bin\Release\netstandard2.0\LambdaTale.Execution.pdb" target="lib\netstandard2.0" />
</files>
</package>
2 changes: 1 addition & 1 deletion src/LambdaTale/ScenarioAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace LambdaTale;
/// E.g. <see cref="Xunit.InlineDataAttribute"/> or
/// <see cref="Xunit.MemberDataAttribute"/>.
/// </summary>
[XunitTestCaseDiscoverer("LambdaTale.Execution.ScenarioDiscoverer", "LambdaTale.Execution.{Platform}")]
[XunitTestCaseDiscoverer("LambdaTale.Execution.ScenarioDiscoverer", "LambdaTale.Execution")]
[AttributeUsage(AttributeTargets.Method)]
[SuppressMessage("Microsoft.Performance", "CA1813:AvoidUnsealedAttributes", Justification = "Designed for extensibility.")]
public class ScenarioAttribute : FactAttribute
Expand Down
2 changes: 1 addition & 1 deletion tests/LambdaTale.Test/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@
"xunit.extensibility.core": "[2.5.0, )"
}
},
"LambdaTale.Execution.dotnet": {
"lambdatale.execution": {
"type": "Project",
"dependencies": {
"LambdaTale": "[1.0.0, )",
Expand Down

0 comments on commit d999824

Please sign in to comment.