Skip to content
This repository has been archived by the owner on Jun 9, 2024. It is now read-only.

Commit

Permalink
added change resume field titles (job, education...) for any languages
Browse files Browse the repository at this point in the history
  • Loading branch information
sametcn99 committed Jan 11, 2023
1 parent 29fa0ee commit 68ab536
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ResumeBuilder/ResumeBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>

<ItemGroup>
<None Remove="Resources\ResumeBuilderLocalDb.mdf" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="EntityFramework" Version="6.4.4" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.1" />
Expand Down
4 changes: 2 additions & 2 deletions ResumeBuilder/SqlControllers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ internal class SqlControllers
string cmdstring = "";
string imagePath;

//public string connectionString = $"Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename={Application.StartupPath}ResumeBuilderLocalDb.mdf;Integrated Security=True";
public string connectionString = @"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=C:\Users\samet\source\repos\ResumeBuilder\ResumeBuilder\ResumeBuilderLocalDb.mdf;Integrated Security=True";
public string connectionString = $"Data Source=(LocalDB)\\MSSQLLocalDB;AttachDbFilename={Application.StartupPath}ResumeBuilderLocalDb.mdf;Integrated Security=True";
//public string connectionString = @"Data Source=(LocalDB)\MSSQLLocalDB;AttachDbFilename=C:\Users\samet\source\repos\ResumeBuilder\ResumeBuilder\ResumeBuilderLocalDb.mdf;Integrated Security=True";
public string defaultEmptyValue = """
UPDATE MoreDetails SET PersonalProjects = '' WHERE PersonalProjects IS NULL;
UPDATE MoreDetails SET Skill = '' WHERE Skill IS NULL;
Expand Down

0 comments on commit 68ab536

Please sign in to comment.