diff --git a/GerstITS.Examples.Api/GerstITS.Examples.Api.csproj b/GerstITS.Examples.Api/GerstITS.Examples.Api.csproj index ad72364..d9f2a66 100644 --- a/GerstITS.Examples.Api/GerstITS.Examples.Api.csproj +++ b/GerstITS.Examples.Api/GerstITS.Examples.Api.csproj @@ -1,10 +1,12 @@ - ITSCare GbR - ITSCare GbR - Copyright © ITSCare GbR 2021 - ITSCare Example WebApi + Gerst ITS + Gerst ITS + © 2021 Gerst ITS + Gerst ITS + Gerst ITS Examples Web Api + Exapmle Web Api 0.0.0.0 0.0.0.0 0.0.0.0 @@ -21,7 +23,7 @@ true 1591 - bin\Debug\net5.0\ITSCare.Example.Api.xml + bin\Release\net5.0\GerstITS.Example.Api.xml @@ -30,38 +32,38 @@ true 1591 - bin\Release\net5.0\ITSCare.Example.Api.xml + bin\Release\net5.0\GerstITS.Example.Api.xml - - - - - - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - + + + + + + + + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + - - + + diff --git a/GerstITS.Examples.Api/Properties/launchSettings.json b/GerstITS.Examples.Api/Properties/launchSettings.json index 364757a..b4123d5 100644 --- a/GerstITS.Examples.Api/Properties/launchSettings.json +++ b/GerstITS.Examples.Api/Properties/launchSettings.json @@ -14,14 +14,6 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } - }, - "ITSCare.Example.Api": { - "commandName": "Project", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" } } } \ No newline at end of file diff --git a/GerstITS.Examples.Jobs.SayHelloWorld/GerstITS.Examples.Jobs.SayHelloWorld.csproj b/GerstITS.Examples.Jobs.SayHelloWorld/GerstITS.Examples.Jobs.SayHelloWorld.csproj index 43e7005..191e9ff 100644 --- a/GerstITS.Examples.Jobs.SayHelloWorld/GerstITS.Examples.Jobs.SayHelloWorld.csproj +++ b/GerstITS.Examples.Jobs.SayHelloWorld/GerstITS.Examples.Jobs.SayHelloWorld.csproj @@ -1,10 +1,11 @@ - ITSCare GbR - ITSCare GbR - Copyright © ITSCare GbR 2021 - ITSCare GbR Example Job + Gerst ITS + Gerst ITS + © 2021 Gerst ITS + Gerst ITS Examples Job + Exapmle job. 0.0.0.0 0.0.0.0 0.0.0.0 diff --git a/GerstITS.Examples.Logic/Example/Mappings/IntegerMapping.cs b/GerstITS.Examples.Logic/Example/Mappings/IntegerMapping.cs index 43f086b..8c87a6a 100644 --- a/GerstITS.Examples.Logic/Example/Mappings/IntegerMapping.cs +++ b/GerstITS.Examples.Logic/Example/Mappings/IntegerMapping.cs @@ -9,9 +9,9 @@ namespace GerstITS.Examples.Logic.Example public IntegerMapping() { CreateMap() - .ForMember(x => x.FirstName, m => m.MapFrom((s,t) => $"First Name {s}")) - .ForMember(x => x.LastName, m => m.MapFrom((s,t) => $"Last Name {s}")) - .ForMember(x => x.Description, m => m.MapFrom((s,t) => $"Useful description for id '{s}'")); + .ForMember(x => x.FirstName, m => m.MapFrom((s, _) => $"First Name {s}")) + .ForMember(x => x.LastName, m => m.MapFrom((s, _) => $"Last Name {s}")) + .ForMember(x => x.Description, m => m.MapFrom((s, _) => $"Useful description for id '{s}'")); } #endregion diff --git a/GerstITS.Examples.Logic/GerstITS.Examples.Logic.csproj b/GerstITS.Examples.Logic/GerstITS.Examples.Logic.csproj index 3ac851d..9451ec5 100644 --- a/GerstITS.Examples.Logic/GerstITS.Examples.Logic.csproj +++ b/GerstITS.Examples.Logic/GerstITS.Examples.Logic.csproj @@ -1,10 +1,11 @@  - ITSCare GbR - ITSCare GbR - Copyright © ITSCare GbR 2021 - ITSCare GbR Example Logic + Gerst ITS + Gerst ITS + © 2021 Gerst ITS + Gerst ITS Examples logic + Exapmle Logic. 0.0.0.0 0.0.0.0 0.0.0.0 diff --git a/GerstITS.Examples.WebClient.Console/GerstITS.Examples.WebClient.Console.csproj b/GerstITS.Examples.WebClient.Console/GerstITS.Examples.WebClient.Console.csproj index 2e80845..8ed9afd 100644 --- a/GerstITS.Examples.WebClient.Console/GerstITS.Examples.WebClient.Console.csproj +++ b/GerstITS.Examples.WebClient.Console/GerstITS.Examples.WebClient.Console.csproj @@ -1,10 +1,11 @@ - ITSCare GbR - ITSCare GbR - Copyright © ITSCare GbR 2021 - ITSCare GbR Example WebApi Client + Gerst ITS + Gerst ITS + © 2021 Gerst ITS + Gerst ITS Examples Web Api client console application + Exapmle Web Api client console application. 0.0.0.0 0.0.0.0 0.0.0.0 diff --git a/GerstITS.WebClients.Example.Api/CreationRules/ExampleApiClientCreatingRule.cs b/GerstITS.WebClients.Example.Api/CreationRules/ExampleApiClientCreatingRule.cs index 4b4bca1..a91f5bb 100644 --- a/GerstITS.WebClients.Example.Api/CreationRules/ExampleApiClientCreatingRule.cs +++ b/GerstITS.WebClients.Example.Api/CreationRules/ExampleApiClientCreatingRule.cs @@ -15,7 +15,7 @@ namespace GerstITS.Examples.WebClients.Examples.Api.CreationRules #region Constructors public ExampleApiClientCreatingRule(ExampleApiClientConfiguration configuration, - Func restWebServiceClientFactory) + Func restWebServiceClientFactory) : base(configuration, restWebServiceClientFactory) { } diff --git a/GerstITS.WebClients.Example.Api/GerstITS.Examples.WebClients.Examples.Api.csproj b/GerstITS.WebClients.Example.Api/GerstITS.Examples.WebClients.Examples.Api.csproj index 8c0ade2..73882e8 100644 --- a/GerstITS.WebClients.Example.Api/GerstITS.Examples.WebClients.Examples.Api.csproj +++ b/GerstITS.WebClients.Example.Api/GerstITS.Examples.WebClients.Examples.Api.csproj @@ -1,10 +1,11 @@ - ITSCare GbR - ITSCare GbR - Copyright © ITSCare GbR 2021 - ITSCare GbR Example WebClient + Gerst ITS + Gerst ITS + © 2021 Gerst ITS + Gerst ITS Examples Web Api client + Exapmle Web Api client. 0.0.0.0 0.0.0.0 0.0.0.0