Skip to content

Commit

Permalink
Change: EmploymentHistory now uses 0 to 150
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapellman committed Jan 6, 2019
1 parent 117d0db commit f3304ac
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
10 changes: 10 additions & 0 deletions ml-deep-dives.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,27 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Debug|x64.ActiveCfg = Debug|x64
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Debug|x64.Build.0 = Debug|x64
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Release|Any CPU.Build.0 = Release|Any CPU
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Release|x64.ActiveCfg = Release|x64
{E49D0825-05C3-4238-9A02-F2D2CE37FDA1}.Release|x64.Build.0 = Release|x64
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Debug|x64.ActiveCfg = Debug|x64
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Debug|x64.Build.0 = Debug|x64
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Release|Any CPU.Build.0 = Release|Any CPU
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Release|x64.ActiveCfg = Release|x64
{033419BC-C20C-41B8-8945-43C4C8ACFDB8}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
1 change: 1 addition & 0 deletions mldeepdivelib/mldeepdivelib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion mlregression/Structures/EmploymentHistory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class EmploymentHistory
{
public string PositionName { get; set; }

[Label(1, 150)]
[Label(0, 150)]
public float DurationInMonths { get; set; }

public float IsMarried { get; set; }
Expand Down
11 changes: 11 additions & 0 deletions mlregression/mlregression.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit f3304ac

Please sign in to comment.