Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CloudMaster.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_ASSET_PATHS = "\"CloudMaster/Preview Content\"";
DEVELOPMENT_TEAM = 9D3QHQ7CMS;
ENABLE_PREVIEWS = YES;
Expand All @@ -791,7 +791,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.5;
MARKETING_VERSION = 1.0.6;
PRODUCT_BUNDLE_IDENTIFIER = com.ditectrev.cloudmasterswift;
PRODUCT_NAME = "CloudMaster Swift";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -811,7 +811,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 4;
CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_ASSET_PATHS = "\"CloudMaster/Preview Content\"";
DEVELOPMENT_TEAM = 9D3QHQ7CMS;
ENABLE_PREVIEWS = YES;
Expand All @@ -827,7 +827,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.5;
MARKETING_VERSION = 1.0.6;
PRODUCT_BUNDLE_IDENTIFIER = com.ditectrev.cloudmasterswift;
PRODUCT_NAME = "CloudMaster Swift";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
28 changes: 28 additions & 0 deletions CloudMaster/Constants/Courses.swift
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,34 @@ extension Course {
real: ExamDetail(time: 150, questionCount: 60)
)
),
Course(
fullName: "Azure Data Engineer",
shortName: "DP-203",
description: "Validates expertise in data processing, integration, storage, security, and analytics using Azure data services.",
company: .azure,
repositoryURL: "https://github.com/Ditectrev/DP-203",
questionURL: "https://raw.githubusercontent.com/Ditectrev/DP-203/refs/heads/main/README.md",
url: "https://learn.microsoft.com/en-us/certifications/azure-data-engineer/",
exam: Exam(
quick: ExamDetail(time: 60, questionCount: 20),
intermediate: ExamDetail(time: 105, questionCount: 42),
real: ExamDetail(time: 150, questionCount: 60)
)
),
Course(
fullName: "Azure Data Fundamentals",
shortName: "DP-900",
description: "Validates foundational knowledge of core data concepts and Microsoft Azure data services.",
company: .azure,
repositoryURL: "https://github.com/Ditectrev/DP-900",
questionURL: "https://raw.githubusercontent.com/Ditectrev/DP-900/main/README.md",
url: "https://learn.microsoft.com/en-us/certifications/azure-data-fundamentals/",
exam: Exam(
quick: ExamDetail(time: 60, questionCount: 20),
intermediate: ExamDetail(time: 105, questionCount: 42),
real: ExamDetail(time: 150, questionCount: 60)
)
),
Course(
fullName: "Associate Cloud Engineer",
shortName: "ACE",
Expand Down
Loading