Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d6a2683
Organize file structure and add Parse.Core project for future use.
TheFanatr Mar 21, 2020
bbc07ab
Organize file structure further, and extract certain configuration it…
TheFanatr Mar 23, 2020
6b1e1a8
Make sure that temporary cache is cleared when the host application i…
TheFanatr Mar 24, 2020
fc1d958
Undo simplification of IParseCorePlugins and implementation in order …
TheFanatr Mar 24, 2020
fa91f73
Move IParseCorePlugins and implementation to management-related names…
TheFanatr Mar 24, 2020
69be94d
Introduce new ServiceHub-based infrastructure elements and use them i…
TheFanatr Apr 6, 2020
23e86ea
Complete refactored usage of dependency injection via merged plugin c…
TheFanatr Apr 9, 2020
645b19f
Fix all bugs according to tests.
TheFanatr Apr 9, 2020
b4ede59
Added theoretical support for concurrent users.
TheFanatr Apr 29, 2020
fea1dee
Change main project folder and namespace structure again, and clean u…
TheFanatr Apr 29, 2020
a9a93e3
Add late initialized IMutableServiceHub implementation, use IServiceH…
TheFanatr May 4, 2020
f1e3068
Update README.md, add and document SignUpAsync IServiceHub extension …
TheFanatr May 4, 2020
a746e2e
Rename IStorageController and related items to derivative names of IC…
TheFanatr May 4, 2020
f58c248
Rename ConcurrentUserStorageController to VirtualCacheController, and…
TheFanatr May 5, 2020
5729f9b
Update exception messages, rename ConcurrentUserStorageController to …
TheFanatr May 5, 2020
3f1154f
Update README.md.
TheFanatr May 5, 2020
d77ffe5
Update SignUpAsync IServiceHub extension method logic, and make Parse…
TheFanatr May 5, 2020
44398fe
Merge branch 'master' into master
TobiasPott Jun 26, 2020
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
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: '2.0.0-develop-{build}'
image: Visual Studio 2017
image: Visual Studio 2019
before_build:
- nuget restore Parse.sln
build_script:
Expand All @@ -9,7 +9,7 @@ before_test:
- choco install opencover.portable
- choco install codecov
test_script:
- OpenCover.Console.exe -target:dotnet.exe -targetargs:"test --test-adapter-path:. --logger:Appveyor /p:DebugType=full .\Parse.Test\Parse.Test.csproj" -filter:"+[Parse*]* -[Parse.Test*]*" -oldstyle -output:parse_sdk_dotnet_coverage.xml -register:user
- OpenCover.Console.exe -target:dotnet.exe -targetargs:"test --test-adapter-path:. --logger:Appveyor /p:DebugType=full .\Parse.Tests\Parse.Tests.csproj" -filter:"+[Parse*]* -[Parse.Tests*]*" -oldstyle -output:parse_sdk_dotnet_coverage.xml -register:user
after_test:
- codecov -f "parse_sdk_dotnet_coverage.xml"
artifacts:
Expand Down
14 changes: 13 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,16 @@ csharp_space_between_method_call_parameter_list_parentheses = false
csharp_space_between_parentheses = false

csharp_preserve_single_line_statements = false
csharp_preserve_single_line_blocks = true
csharp_preserve_single_line_blocks = true

# CC0005: Empty Object Initializer
dotnet_diagnostic.CC0005.severity = none

# CC0105: You should use 'var' whenever possible.
dotnet_diagnostic.CC0105.severity = none

# CC0001: You should use 'var' whenever possible.
dotnet_diagnostic.CC0001.severity = none

# CC0057: Unused parameters
dotnet_diagnostic.CC0057.severity = none
98 changes: 0 additions & 98 deletions Parse.Test/AnalyticsTests.cs

This file was deleted.

73 changes: 0 additions & 73 deletions Parse.Test/CloudControllerTests.cs

This file was deleted.

42 changes: 0 additions & 42 deletions Parse.Test/CloudTests.cs

This file was deleted.

136 changes: 0 additions & 136 deletions Parse.Test/CommandTests.cs

This file was deleted.

Loading