Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
86311d9
feat(*): interface segregation
jaredcnance Jun 12, 2017
f8a7ac2
Merge branch 'feat/cqrs' into unstable
jaredcnance Jun 12, 2017
54575d7
Merge branch 'unstable' into master
jaredcnance Jun 14, 2017
40ffa82
Merge pull request #133 from Research-Institute/master
jaredcnance Jun 14, 2017
60f7713
Merge pull request #134 from Research-Institute/master
jaredcnance Jun 14, 2017
46f2d07
feat(serialization): improve support for complex attrs
jaredcnance Jun 13, 2017
3de6d21
fix(typeHelper): handle complex types
jaredcnance Jun 23, 2017
deb57df
feat(services): complete interface segregation
jaredcnance Jun 25, 2017
fc7f702
chore(examples): move projects under examples directory
jaredcnance Jun 25, 2017
504dfa1
feat(reports): add reports example
jaredcnance Jun 25, 2017
18ae7c8
Merge branch 'feat/#125' into unstable
jaredcnance Jun 25, 2017
d804628
chore(#117): remove deprecated constructor
jaredcnance Jun 25, 2017
59fc512
feat(#129): optionally disable links
jaredcnance Jun 25, 2017
c131839
feat(#130): disable query params
jaredcnance Jun 27, 2017
c08fbe0
feat(#128): immutable attributes
jaredcnance Jun 28, 2017
ee0025f
feat(#139): handle empty strings in type helper
jaredcnance Jun 28, 2017
a894f69
feat(#138): improved exception handling
jaredcnance Jun 28, 2017
6ed2a4f
test(base-controller): add unit tests
jaredcnance Jul 2, 2017
e792b8e
Merge pull request #140 from Research-Institute/unstable
jaredcnance Jul 2, 2017
b46d299
add documentation
jaredcnance Jul 2, 2017
93b063e
add documentation
jaredcnance Jul 2, 2017
6e92a9f
fix(#126): implicitly add db context to context graph
jaredcnance Jul 2, 2017
ad8787e
fix(ctx-graph-builder): set link flags to prevent ordering issues
jaredcnance Jul 2, 2017
File filter

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
chore(examples): move projects under examples directory
  • Loading branch information
jaredcnance committed Jun 25, 2017
commit fc7f702778e997c05399349d3f5e9c125fe2ceac
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"isShellCommand": true,
"args": [],
"options": {
"cwd": "${workspaceRoot}/src/JsonApiDotNetCoreExample"
"cwd": "${workspaceRoot}/src/Examples/JsonApiDotNetCoreExample"
},
"tasks": [
{
Expand Down
4 changes: 2 additions & 2 deletions JsonApiDotnetCore.sln
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ VisualStudioVersion = 15.0.26228.9
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JsonApiDotNetCore", "src\JsonApiDotNetCore\JsonApiDotNetCore.csproj", "{C0EC9E70-EB2E-436F-9D94-FA16FA774123}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JsonApiDotNetCoreExample", "src\JsonApiDotNetCoreExample\JsonApiDotNetCoreExample.csproj", "{97EE048B-16C0-43F6-BDA9-4E762B2F579F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JsonApiDotNetCoreExample", "src\Examples\JsonApiDotNetCoreExample\JsonApiDotNetCoreExample.csproj", "{97EE048B-16C0-43F6-BDA9-4E762B2F579F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7A2B7ADD-ECB5-4D00-AA6A-D45BD11C97CF}"
EndProject
Expand All @@ -18,7 +18,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
README.md = README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoEntityFrameworkExample", "src\NoEntityFrameworkExample\NoEntityFrameworkExample.csproj", "{570165EC-62B5-4684-A139-8D2A30DD4475}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoEntityFrameworkExample", "src\Examples\NoEntityFrameworkExample\NoEntityFrameworkExample.csproj", "{570165EC-62B5-4684-A139-8D2A30DD4475}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoEntityFrameworkTests", "test\NoEntityFrameworkTests\NoEntityFrameworkTests.csproj", "{73DA578D-A63F-4956-83ED-6D7102E09140}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="../JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
<ProjectReference Include="../../JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
<ProjectReference Include="../JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
<ProjectReference Include="../../JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
<ProjectReference Include="../../Examples/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../../src/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
<ProjectReference Include="../../src/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj" />
<ProjectReference Include="../../src/Examples/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
<ProjectReference Include="../../src/Examples/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions test/NoEntityFrameworkTests/NoEntityFrameworkTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../../src/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
<ProjectReference Include="../../src/Examples/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
<ProjectReference Include="../../test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj" />
<ProjectReference Include="../../src/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj" />
<ProjectReference Include="../../src/Examples/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion test/UnitTests/UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
<ProjectReference Include="..\..\src\JsonApiDotNetCoreExample\JsonApiDotNetCoreExample.csproj" />
<ProjectReference Include="..\..\src\Examples\JsonApiDotNetCoreExample\JsonApiDotNetCoreExample.csproj" />
</ItemGroup>
</Project>