Skip to content

Commit dc43eed

Browse files
committed
no message
1 parent 38edfd7 commit dc43eed

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

SubSonic.Core.Remoting.Testing/Components/DummyHost.cs

+2-7
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,20 @@
2424
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2525
// THE SOFTWARE.
2626

27+
using Mono.VisualStudio.TextTemplating.VSHost;
2728
using System;
2829
using System.Collections.Generic;
29-
using System.CodeDom.Compiler;
30-
using Mono.VisualStudio.TextTemplating;
31-
using Mono.VisualStudio.TextTemplating.VSHost;
32-
using NSubstitute.Core;
3330
using System.IO;
34-
using System.Runtime.Serialization;
3531

3632
namespace Mono.TextTemplating.Tests
3733
{
38-
[Serializable]
34+
[Serializable]
3935
public class DummyHost
4036
: ProcessEngineHost
4137
{
4238
public readonly Dictionary<string, string> Locations = new Dictionary<string, string> ();
4339
public readonly Dictionary<string, string> Contents = new Dictionary<string, string> ();
4440
public readonly Dictionary<string, object> HostOptions = new Dictionary<string, object> ();
45-
public readonly TemplateErrorCollection Errors = new TemplateErrorCollection ();
4641
public readonly Dictionary<string, Type> DirectiveProcessors = new Dictionary<string, Type> ();
4742

4843
public DummyHost()

SubSonic.Core.Remoting.Testing/SubSonic.Core.Remoting.Testing.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
<ItemGroup>
1010
<PackageReference Include="FluentAssertions" Version="5.10.3" />
11-
<PackageReference Include="Mono.TextTemplating" Version="2.2.0-preview-0141-g6299589e5c" />
1211
<PackageReference Include="NSubstitute" Version="4.2.2" />
1312
<PackageReference Include="nunit" Version="3.12.0" />
1413
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
1514
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
15+
<PackageReference Include="SubSonic.Core.TextTemplating" Version="2.2.0" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

SubSonic.Core.Remoting/SubSonic.Core.Remoting.csproj

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<SignAssembly>true</SignAssembly>
77
<AssemblyOriginatorKeyFile>SubSonic.Core.Remoting.snk</AssemblyOriginatorKeyFile>
8+
<Description>This is a remoting package that implements functionality that wraps around named pipes</Description>
9+
<PackageTags>remoting wrapper</PackageTags>
810
</PropertyGroup>
911

1012
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'">
@@ -32,10 +34,6 @@
3234
<PrivateAssets>all</PrivateAssets>
3335
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3436
</PackageReference>
35-
<PackageReference Include="Nerdbank.GitVersioning" Version="3.2.31">
36-
<PrivateAssets>all</PrivateAssets>
37-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
38-
</PackageReference>
3937
<PackageReference Include="SubSonic.Core.Extensions" Version="1.1.0" />
4038
<PackageReference Include="SubSonic.Core.ServiceWire" Version="5.3.4" />
4139
<PackageReference Include="System.Memory" Version="4.5.4" />

SubSonic.Core.Remoting/obj/Debug/netstandard2.0/SubSonic.Core.Remoting.AssemblyInfo.cs

+5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@
1313

1414
[assembly: System.Reflection.AssemblyCompanyAttribute("Kenneth Carter")]
1515
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16+
[assembly: System.Reflection.AssemblyDescriptionAttribute("This is a remoting package that implements functionality that wraps around named " +
17+
"pipes")]
18+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
19+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
1620
[assembly: System.Reflection.AssemblyProductAttribute("SubSonic.Core.Remoting")]
1721
[assembly: System.Reflection.AssemblyTitleAttribute("SubSonic.Core.Remoting")]
22+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
1823

1924
// Generated by the MSBuild WriteCodeFragment class.
2025

SubSonic.Core.Remoting/obj/Debug/netstandard2.1/SubSonic.Core.Remoting.AssemblyInfo.cs

+5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@
1313

1414
[assembly: System.Reflection.AssemblyCompanyAttribute("Kenneth Carter")]
1515
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16+
[assembly: System.Reflection.AssemblyDescriptionAttribute("This is a remoting package that implements functionality that wraps around named " +
17+
"pipes")]
18+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
19+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
1620
[assembly: System.Reflection.AssemblyProductAttribute("SubSonic.Core.Remoting")]
1721
[assembly: System.Reflection.AssemblyTitleAttribute("SubSonic.Core.Remoting")]
22+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
1823

1924
// Generated by the MSBuild WriteCodeFragment class.
2025

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-preview.{height}",
2+
"version": "1.1.0-preview.{height}",
33
"publicReleaseRefSpec": [
44
"^refs/tags/v\\d+\\.\\d+$",
55
"^refs/tags/v\\d+\\.\\d+\\.\\d+$"

0 commit comments

Comments
 (0)