Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ported Symptum.Editor to Uno #1

Merged
merged 18 commits into from
Dec 3, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Updated web-editor-deploy.yml
ShankarBUS committed Nov 27, 2023
commit 5ad2814ed713ea3992ba274f94e50ed93a6b5dd2
2 changes: 1 addition & 1 deletion .github/workflows/web-editor-deploy.yml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ jobs:
- name: Create Symptum/Editor Folder
run: mkdir "symptum/editor"
- name: Copy Files to Symptum/Editor Folder
run: xcopy /s "out/wwwroot" "symptum/editor"
run: copy-item out\\wwwroot\\* symptum\\editor -force -recurse -verbose
# add .nojekyll file to tell GitHub pages to not treat this as a Jekyll project. (Allow files and folders starting with an underscore)
- name: Add .nojekyll file
run: touch symptum/editor/.nojekyll

Unchanged files with check annotations Beta

public ObservableCollection<QuestionBankPaper> QuestionBankPapers { get; set; }
public QuestionBank()

Check warning on line 11 in src/Symptum.Core/Subjects/QuestionBank/QuestionBank.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable property 'QuestionBankPapers' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
{ }
public QuestionBank(SubjectList subject)

Check warning on line 14 in src/Symptum.Core/Subjects/QuestionBank/QuestionBank.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable property 'QuestionBankPapers' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
{
Subject = subject;
}
{
public class QuestionBankPaper
{
public QuestionBankPaper()

Check warning on line 7 in src/Symptum.Core/Subjects/QuestionBank/QuestionBankPaper.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable property 'PaperName' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

Check warning on line 7 in src/Symptum.Core/Subjects/QuestionBank/QuestionBankPaper.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable property 'Topics' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
{ }
public QuestionBankPaper(string paperName)

Check warning on line 10 in src/Symptum.Core/Subjects/QuestionBank/QuestionBankPaper.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable property 'Topics' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
{
PaperName = paperName;
}
#endregion
public BookLocation()

Check warning on line 49 in src/Symptum.Core/Subjects/Books/BookLocation.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable field '_book' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.
{
}
#endregion
public QuestionBankTopic()

Check warning on line 32 in src/Symptum.Core/Subjects/QuestionBank/QuestionBankTopic.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable field 'questionEntries' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.
{ }
public QuestionBankTopic(string topicName)

Check warning on line 35 in src/Symptum.Core/Subjects/QuestionBank/QuestionBankTopic.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable field 'questionEntries' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.
{
TopicName = topicName;
}
#endregion
public QuestionEntry()

Check warning on line 93 in src/Symptum.Core/Subjects/QuestionBank/QuestionEntry.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable field 'yearsAsked' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.

Check warning on line 93 in src/Symptum.Core/Subjects/QuestionBank/QuestionEntry.cs

GitHub Actions / Deploy to GitHub Pages

Non-nullable field 'bookLocations' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.
{
}