Skip to content

Commit

Permalink
Project startup improvements, add more content to README.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
JZO001 committed Oct 23, 2022
1 parent 7e8ef0b commit 9faa67e
Show file tree
Hide file tree
Showing 5 changed files with 186 additions and 193 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,16 @@
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="6.1.0" />
</ItemGroup>

<ItemGroup>
<!--Reference Include="Forge.Security.Jwt.Service">
<ItemGroup><!--Reference Include="Forge.Security.Jwt.Service">
<HintPath>..\Forge.Yoda.Externals\Forge.Security.Jwt.Service.dll</HintPath>
</Reference>
<Reference Include="Forge.Security.Jwt.Shared">
<HintPath>..\Forge.Yoda.Externals\Forge.Security.Jwt.Shared.dll</HintPath>
</Reference>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.24.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="6.0.10" /-->

<Folder Include="Migrations\" />
</ItemGroup>

</Project>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
Surname = table.Column<string>(type: "nvarchar(max)", nullable: false),
Givenname = table.Column<string>(type: "nvarchar(max)", nullable: false),
IsAccountDisabled = table.Column<bool>(type: "bit", nullable: false),
IsExternalAccount = table.Column<bool>(type: "bit", nullable: false),
IsExternalAccountDisabled = table.Column<bool>(type: "bit", nullable: false),
Role = table.Column<string>(type: "nvarchar(max)", nullable: false),
Supplier_Number = table.Column<int>(type: "int", nullable: false),
Customer_Number = table.Column<int>(type: "int", nullable: false),
UserName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true),
NormalizedUserName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true),
Email = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true),
Expand Down
Loading

0 comments on commit 9faa67e

Please sign in to comment.