Skip to content

Commit

Permalink
Update to use ricaun.NamedPipeWrapper.Json
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Sep 26, 2024
1 parent 17356da commit b1b30e1
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Support environment variables to overwrite settings in the `TestAdapter`. (Fix: #57)
### Command
- Update to use `JsonService` implementation to use `Newtonsoft.Json` in the domain.
### Shared
- Update to use `ricaun.NamedPipeWrapper.Json`.
### TestAdapter
- Use `LocalExtensionData` to store `TestModel` result.
- Add `EnvironmentSettings` to overwrite settings in the `TestAdapter`.
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.5.1-beta</Version>
<Version>1.5.1-beta.1</Version>
</PropertyGroup>
</Project>
Binary file not shown.
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/NamedPipeExtension.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NamedPipeWrapper;
using ricaun.NamedPipeWrapper;
using System;
using System.Diagnostics;

Expand Down
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/PipeProcessClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NamedPipeWrapper;
using ricaun.NamedPipeWrapper;
using System;

namespace ricaun.RevitTest.Shared
Expand Down
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/PipeProcessServer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NamedPipeWrapper;
using ricaun.NamedPipeWrapper;
using System;
using System.Diagnostics;

Expand Down
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/PipeTestServer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NamedPipeWrapper;
using ricaun.NamedPipeWrapper;
using System;
using System.Diagnostics;

Expand Down
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/ProcessPipeNameUtils.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NamedPipeWrapper;
using ricaun.NamedPipeWrapper;
using System.Diagnostics;

namespace ricaun.RevitTest.Shared
Expand Down
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/TestRequest.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NamedPipeWrapper.Json;
using ricaun.NamedPipeWrapper.Json;
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
Expand Down
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/TestResponse.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NamedPipeWrapper.Json;
using ricaun.NamedPipeWrapper.Json;
using ricaun.NUnit.Models;
using System;
using System.ComponentModel;
Expand Down
2 changes: 1 addition & 1 deletion ricaun.RevitTest.Shared/ricaun.RevitTest.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="NamedPipeWrapper.Json" Version="*" />
<PackageReference Include="ricaun.NamedPipeWrapper.Json" Version="*-*" />
<PackageReference Include="ricaun.NUnit" Version="*" />
</ItemGroup>

Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit b1b30e1

Please sign in to comment.