Fix naming issues for first draft
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<Company>ITSCare GbR</Company>
|
||||
<Authors>ITSCare GbR</Authors>
|
||||
<Copyright>Copyright © ITSCare GbR 2021</Copyright>
|
||||
<Product>ITSCare Example WebApi</Product>
|
||||
<Company>Gerst ITS</Company>
|
||||
<Authors>Gerst ITS</Authors>
|
||||
<Copyright>© 2021 Gerst ITS</Copyright>
|
||||
<Authors>Gerst ITS</Authors>
|
||||
<Product>Gerst ITS Examples Web Api</Product>
|
||||
<Description>Exapmle Web Api</Description>
|
||||
<Version>0.0.0.0</Version>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
<AssemblyInformationalVersion>0.0.0.0</AssemblyInformationalVersion>
|
||||
@@ -21,7 +23,7 @@
|
||||
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
||||
<WarningsAsErrors />
|
||||
<NoWarn>1591</NoWarn>
|
||||
<DocumentationFile>bin\Debug\net5.0\ITSCare.Example.Api.xml</DocumentationFile>
|
||||
<DocumentationFile>bin\Release\net5.0\GerstITS.Example.Api.xml</DocumentationFile>
|
||||
<OutputPath></OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -30,7 +32,7 @@
|
||||
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
||||
<WarningsAsErrors />
|
||||
<NoWarn>1591</NoWarn>
|
||||
<DocumentationFile>bin\Release\net5.0\ITSCare.Example.Api.xml</DocumentationFile>
|
||||
<DocumentationFile>bin\Release\net5.0\GerstITS.Example.Api.xml</DocumentationFile>
|
||||
<OutputPath></OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<Company>ITSCare GbR</Company>
|
||||
<Authors>ITSCare GbR</Authors>
|
||||
<Copyright>Copyright © ITSCare GbR 2021</Copyright>
|
||||
<Product>ITSCare GbR Example Job</Product>
|
||||
<Company>Gerst ITS</Company>
|
||||
<Authors>Gerst ITS</Authors>
|
||||
<Copyright>© 2021 Gerst ITS</Copyright>
|
||||
<Product>Gerst ITS Examples Job</Product>
|
||||
<Description>Exapmle job.</Description>
|
||||
<Version>0.0.0.0</Version>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
<AssemblyInformationalVersion>0.0.0.0</AssemblyInformationalVersion>
|
||||
|
||||
@@ -9,9 +9,9 @@ namespace GerstITS.Examples.Logic.Example
|
||||
public IntegerMapping()
|
||||
{
|
||||
CreateMap<int, Example>()
|
||||
.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
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<Company>ITSCare GbR</Company>
|
||||
<Authors>ITSCare GbR</Authors>
|
||||
<Copyright>Copyright © ITSCare GbR 2021</Copyright>
|
||||
<Product>ITSCare GbR Example Logic</Product>
|
||||
<Company>Gerst ITS</Company>
|
||||
<Authors>Gerst ITS</Authors>
|
||||
<Copyright>© 2021 Gerst ITS</Copyright>
|
||||
<Product>Gerst ITS Examples logic</Product>
|
||||
<Description>Exapmle Logic.</Description>
|
||||
<Version>0.0.0.0</Version>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
<AssemblyInformationalVersion>0.0.0.0</AssemblyInformationalVersion>
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<Company>ITSCare GbR</Company>
|
||||
<Authors>ITSCare GbR</Authors>
|
||||
<Copyright>Copyright © ITSCare GbR 2021</Copyright>
|
||||
<Product>ITSCare GbR Example WebApi Client</Product>
|
||||
<Company>Gerst ITS</Company>
|
||||
<Authors>Gerst ITS</Authors>
|
||||
<Copyright>© 2021 Gerst ITS</Copyright>
|
||||
<Product>Gerst ITS Examples Web Api client console application</Product>
|
||||
<Description>Exapmle Web Api client console application.</Description>
|
||||
<Version>0.0.0.0</Version>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
<AssemblyInformationalVersion>0.0.0.0</AssemblyInformationalVersion>
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<Company>ITSCare GbR</Company>
|
||||
<Authors>ITSCare GbR</Authors>
|
||||
<Copyright>Copyright © ITSCare GbR 2021</Copyright>
|
||||
<Product>ITSCare GbR Example WebClient</Product>
|
||||
<Company>Gerst ITS</Company>
|
||||
<Authors>Gerst ITS</Authors>
|
||||
<Copyright>© 2021 Gerst ITS</Copyright>
|
||||
<Product>Gerst ITS Examples Web Api client</Product>
|
||||
<Description>Exapmle Web Api client.</Description>
|
||||
<Version>0.0.0.0</Version>
|
||||
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
||||
<AssemblyInformationalVersion>0.0.0.0</AssemblyInformationalVersion>
|
||||
|
||||
Reference in New Issue
Block a user