mirror of https://github.com/dapr/dotnet-sdk.git
Removed unused usings (#122)
This commit is contained in:
parent
c297101db0
commit
3d2fbe8b25
|
|
@ -6,12 +6,9 @@
|
|||
namespace ActorClient
|
||||
{
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Dapr.Actors;
|
||||
using Dapr.Actors.Client;
|
||||
using IDemoActorInterface;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
/// <summary>
|
||||
/// Actor Client class.
|
||||
|
|
|
|||
|
|
@ -5,14 +5,8 @@
|
|||
|
||||
namespace ControllerSample
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
/// <summary>
|
||||
/// Controller Sample.
|
||||
|
|
|
|||
|
|
@ -5,14 +5,8 @@
|
|||
|
||||
namespace RoutingSample
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
/// <summary>
|
||||
/// Controller Sample.
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@ namespace GrpcClient
|
|||
using Google.Protobuf;
|
||||
using Google.Protobuf.WellKnownTypes;
|
||||
using Grpc.Core;
|
||||
using Grpc.Net.Client;
|
||||
|
||||
/// <summary>
|
||||
/// gRPC CLient sample class.
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ namespace Dapr.Actors.AspNetCore
|
|||
{
|
||||
using System;
|
||||
using System.Buffers;
|
||||
using System.IO;
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using Dapr.Actors.Runtime;
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ namespace Dapr.Actors.Builder
|
|||
{
|
||||
using System;
|
||||
using Dapr.Actors.Client;
|
||||
using Dapr.Actors.Communication;
|
||||
using Dapr.Actors.Communication.Client;
|
||||
|
||||
internal class ActorProxyGenerator
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,9 +5,7 @@
|
|||
|
||||
namespace Dapr.Actors.Client
|
||||
{
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Dapr.Actors.Communication;
|
||||
|
|
|
|||
|
|
@ -6,10 +6,8 @@
|
|||
namespace Dapr.Actors.Client
|
||||
{
|
||||
using System;
|
||||
using System.Net.Http;
|
||||
using Dapr.Actors.Builder;
|
||||
using Dapr.Actors.Communication.Client;
|
||||
using Dapr.Actors.Runtime;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a factory class to create a proxy to the remote actor objects.
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@
|
|||
|
||||
namespace Dapr.Actors.Client
|
||||
{
|
||||
using Dapr.Actors.Communication.Client;
|
||||
|
||||
/// <summary>
|
||||
/// Provides the interface for implementation of proxy access for actor service.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@
|
|||
|
||||
namespace Dapr.Actors.Client
|
||||
{
|
||||
using System;
|
||||
|
||||
/// <summary>
|
||||
/// Defines the interface containing methods to create actor proxy factory class.
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ namespace Dapr.Actors.Communication
|
|||
using System.Globalization;
|
||||
using Dapr.Actors.Builder;
|
||||
using Dapr.Actors.Resources;
|
||||
using Dapr.Actors.Runtime;
|
||||
|
||||
/// <summary>
|
||||
/// Actor method dispatcher map for remoting calls.
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
namespace Dapr.Actors.Communication.Client
|
||||
{
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
|
||||
namespace Dapr.Actors.Communication.Client
|
||||
{
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
namespace Dapr.Actors.Communication
|
||||
{
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
/// <summary>
|
||||
/// Defines the interface that must be implemented to provide a serializer/deserializer for remoting request message body.
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ namespace Dapr.Actors.Communication
|
|||
using System.Text;
|
||||
using System.Xml;
|
||||
using Dapr.Actors;
|
||||
using Dapr.Actors.Communication;
|
||||
using Dapr.Actors.Resources;
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -5,13 +5,10 @@
|
|||
|
||||
namespace Dapr.Actors
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Dapr.Actors.Communication;
|
||||
using Dapr.Actors.Runtime;
|
||||
|
||||
/// <summary>
|
||||
/// Interface for interacting with Dapr runtime.
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ namespace Dapr.Actors
|
|||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.Xml;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
|
|
|
|||
|
|
@ -6,9 +6,6 @@
|
|||
namespace Dapr.Actors.Runtime
|
||||
{
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
internal class ActorReminder : IActorReminder
|
||||
{
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ namespace Dapr.Actors.Runtime
|
|||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Dapr.Actors.Communication;
|
||||
|
||||
/// <summary>
|
||||
/// Contains methods to register actor types. Registering the types allows the runtime to create instances of the actor.
|
||||
|
|
|
|||
|
|
@ -7,8 +7,6 @@ namespace Dapr.Actors.Runtime
|
|||
{
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ namespace Dapr.Actors.Runtime
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
namespace Dapr.Actors.Runtime
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ namespace Dapr
|
|||
using System.Net;
|
||||
using System.Net.Http;
|
||||
using System.Net.Http.Headers;
|
||||
using System.Text;
|
||||
using System.Text.Json;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
|
|
|||
Loading…
Reference in New Issue