├── .vs └── RestApiSample │ ├── DesignTimeBuild │ └── .dtbcache │ ├── config │ └── applicationhost.config │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ └── storage.ide ├── RestApiSample.sln └── RestApiSample ├── Controllers ├── AuthorController.cs └── BookController.cs ├── Migrations ├── 20200412200024_initial.Designer.cs ├── 20200412200024_initial.cs └── BookLibraryContextModelSnapshot.cs ├── Models ├── BookLibraryContext.cs ├── Dto │ ├── AuthorCreateDto.cs │ ├── AuthorUpdateDto.cs │ ├── BookCreateDto.cs │ └── BookUpdateDto.cs └── Entities │ ├── Author.cs │ └── Book.cs ├── Program.cs ├── Properties └── launchSettings.json ├── RestApiSample.csproj ├── RestApiSample.csproj.user ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── netcoreapp3.1 │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Bcl.HashCode.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Binder.dll │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ ├── Newtonsoft.Json.dll │ ├── NuGet.Frameworks.dll │ ├── Properties │ └── launchSettings.json │ ├── RestApiSample.deps.json │ ├── RestApiSample.dll │ ├── RestApiSample.exe │ ├── RestApiSample.pdb │ ├── RestApiSample.runtimeconfig.dev.json │ ├── RestApiSample.runtimeconfig.json │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── dotnet-aspnet-codegenerator-design.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ └── System.Runtime.Caching.dll │ │ │ └── netcoreapp2.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm64 │ │ └── native │ │ │ └── sni.dll │ ├── win-x64 │ │ └── native │ │ │ └── sni.dll │ ├── win-x86 │ │ └── native │ │ │ └── sni.dll │ └── win │ │ └── lib │ │ ├── netcoreapp2.0 │ │ └── System.Runtime.Caching.dll │ │ ├── netcoreapp2.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ └── System.Security.Cryptography.ProtectedData.dll │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll └── obj ├── Debug └── netcoreapp3.1 │ ├── RestApiSample.AssemblyInfo.cs │ ├── RestApiSample.AssemblyInfoInputs.cache │ ├── RestApiSample.MvcApplicationPartsAssemblyInfo.cache │ ├── RestApiSample.RazorTargetAssemblyInfo.cache │ ├── RestApiSample.assets.cache │ ├── RestApiSample.csproj.CopyComplete │ ├── RestApiSample.csproj.FileListAbsolute.txt │ ├── RestApiSample.csprojAssemblyReference.cache │ ├── RestApiSample.dll │ ├── RestApiSample.exe │ ├── RestApiSample.pdb │ └── staticwebassets │ ├── RestApiSample.StaticWebAssets.Manifest.cache │ └── RestApiSample.StaticWebAssets.xml ├── RestApiSample.csproj.nuget.cache ├── RestApiSample.csproj.nuget.dgspec.json ├── RestApiSample.csproj.nuget.g.props ├── RestApiSample.csproj.nuget.g.targets └── project.assets.json /.vs/RestApiSample/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/.vs/RestApiSample/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/RestApiSample/config/applicationhost.config: -------------------------------------------------------------------------------- 1 |  2 | 20 | 21 | 48 | 49 | 50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 | 59 | 60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | 79 |
80 |
81 | 82 |
83 |
84 |
85 |
86 |
87 |
88 | 89 |
90 |
91 |
92 |
93 |
94 | 95 |
96 |
97 |
98 | 99 |
100 |
101 | 102 |
103 |
104 | 105 |
106 |
107 |
108 | 109 | 110 |
111 |
112 |
113 |
114 |
115 |
116 | 117 |
118 |
119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | 656 | 657 | 658 | 659 | 660 | 661 | 662 | 663 | 664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 | 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | 703 | 704 | 705 | 706 | 707 | 708 | 709 | 710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 | 740 | 741 | 742 | 743 | 744 | 745 | 746 | 747 | 748 | 749 | 750 | 751 | 752 | 753 | 754 | 755 | 756 | 757 | 758 | 759 | 760 | 761 | 762 | 763 | 764 | 765 | 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | 774 | 775 | 776 | 777 | 778 | 779 | 780 | 781 | 782 | 783 | 784 | 785 | 786 | 787 | 788 | 789 | 790 | 791 | 792 | 793 | 794 | 795 | 796 | 797 | 798 | 799 | 800 | 801 | 802 | 803 | 804 | 805 | 806 | 807 | 808 | 809 | 810 | 811 | 812 | 813 | 814 | 815 | 816 | 817 | 818 | 819 | 820 | 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | 829 | 830 | 831 | 832 | 833 | 834 | 835 | 836 | 837 | 838 | 839 | 840 | 841 | 842 | 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 862 | 863 | 864 | 865 | 866 | 867 | 868 | 869 | 870 | 871 | 872 | 873 | 874 | 875 | 876 | 877 | 878 | 879 | 880 | 881 | 882 | 883 | 884 | 885 | 886 | 887 | 888 | 889 | 890 | 891 | 892 | 893 | 894 | 895 | 896 | 897 | 898 | 899 | 900 | 901 | 902 | 903 | 904 | 905 | 906 | 907 | 908 | 909 | 910 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | -------------------------------------------------------------------------------- /.vs/RestApiSample/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/.vs/RestApiSample/v16/.suo -------------------------------------------------------------------------------- /.vs/RestApiSample/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/.vs/RestApiSample/v16/Server/sqlite3/db.lock -------------------------------------------------------------------------------- /.vs/RestApiSample/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/.vs/RestApiSample/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /RestApiSample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29709.97 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RestApiSample", "RestApiSample\RestApiSample.csproj", "{84D17CFA-4FAC-4468-BAFD-9359503A752A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {84D17CFA-4FAC-4468-BAFD-9359503A752A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {84D17CFA-4FAC-4468-BAFD-9359503A752A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {84D17CFA-4FAC-4468-BAFD-9359503A752A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {84D17CFA-4FAC-4468-BAFD-9359503A752A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {F54286BD-AC87-409A-8D02-EE70CE922894} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /RestApiSample/Controllers/AuthorController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using Microsoft.AspNetCore.Mvc; 5 | using RestApiSample.Models; 6 | using RestApiSample.Models.Dto; 7 | using RestApiSample.Models.Entities; 8 | 9 | namespace RestApiSample.Controllers 10 | { 11 | [Route("api/v1/authors")] 12 | [ApiController] 13 | public class AuthorController : ControllerBase 14 | { 15 | private readonly BookLibraryContext _bookLibrary; 16 | public AuthorController(BookLibraryContext bookLibrary) 17 | { 18 | _bookLibrary = bookLibrary; 19 | } 20 | 21 | [HttpGet] 22 | public IEnumerable Get() 23 | { 24 | return _bookLibrary.Authors.ToArray(); 25 | } 26 | 27 | [HttpGet("{id}")] 28 | public ActionResult Get(Guid id) 29 | { 30 | var author = _bookLibrary.Authors.FirstOrDefault(p => p.Id == id); 31 | if (author is null) return NotFound(); 32 | 33 | return author; 34 | } 35 | 36 | [HttpPost] 37 | public ActionResult Post(AuthorCreateDto authorDto) 38 | { 39 | var author = new Author { FirstName = authorDto.FirstName, LastName = authorDto.LastName }; 40 | _bookLibrary.Authors.Add(author); 41 | _bookLibrary.SaveChanges(); 42 | return CreatedAtAction("Get", new { id = author.Id }, author); 43 | } 44 | 45 | 46 | [HttpPut("{id}")] 47 | public ActionResult Put(Guid id, AuthorUpdateDto authorDto) 48 | { 49 | var author = _bookLibrary.Authors.FirstOrDefault(p => p.Id == id); 50 | if (author is null) 51 | { 52 | author = new Author { FirstName = authorDto.FirstName, LastName = authorDto.LastName, Id = id }; 53 | _bookLibrary.Authors.Add(author); 54 | _bookLibrary.SaveChanges(); 55 | return CreatedAtAction("Get", new { id = id }, author); 56 | } 57 | author.FirstName = authorDto.FirstName; 58 | author.LastName = authorDto.LastName; 59 | _bookLibrary.SaveChanges(); 60 | return NoContent(); 61 | } 62 | 63 | 64 | [HttpDelete("{id}")] 65 | public ActionResult Delete(Guid id) 66 | { 67 | var author = _bookLibrary.Authors.FirstOrDefault(p => p.Id == id); 68 | if (author is null) return NotFound(); 69 | 70 | _bookLibrary.Remove(author); 71 | _bookLibrary.SaveChanges(); 72 | return NoContent(); 73 | } 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /RestApiSample/Controllers/BookController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Http; 6 | using Microsoft.AspNetCore.Mvc; 7 | using RestApiSample.Models; 8 | using RestApiSample.Models.Dto; 9 | using RestApiSample.Models.Entities; 10 | 11 | namespace RestApiSample.Controllers 12 | { 13 | [Route("api/v1/authors/{authorId}/books")] 14 | [ApiController] 15 | public class BookController : ControllerBase 16 | { 17 | 18 | private readonly BookLibraryContext _bookLibrary; 19 | public BookController(BookLibraryContext bookLibrary) 20 | { 21 | _bookLibrary = bookLibrary; 22 | } 23 | 24 | 25 | public ActionResult> Get(Guid authorId) 26 | { 27 | return _bookLibrary.Books.Where(p => p.AuthorId == authorId).ToArray(); 28 | } 29 | 30 | [HttpGet("{id}")] 31 | public ActionResult Get(Guid authorId, Guid id) 32 | { 33 | var author = _bookLibrary.Books.FirstOrDefault(p => p.AuthorId == authorId && p.Id == id); 34 | if (author is null) return NotFound(); 35 | 36 | return author; 37 | } 38 | 39 | [HttpPost] 40 | public ActionResult Post(Guid authorId, BookCreateDto bookDto) 41 | { 42 | 43 | var book = new Book { Name = bookDto.Name, AuthorId = authorId, Id = Guid.NewGuid() }; 44 | _bookLibrary.Books.Add(book); 45 | _bookLibrary.SaveChanges(); 46 | return CreatedAtAction("Get", new { id = book.Id, authorId = authorId }, book); 47 | } 48 | 49 | 50 | [HttpPut("{id}")] 51 | public ActionResult Put(Guid authorId, Guid id, BookUpdateDto bookDto) 52 | { 53 | var author = _bookLibrary.Authors.FirstOrDefault(p => p.Id == authorId); 54 | if (author is null) return NotFound(); 55 | 56 | var book = _bookLibrary.Books.FirstOrDefault(p => p.Id == id); 57 | if (book is null) 58 | { 59 | book = new Book { Name = bookDto.Name, AuthorId = authorId, Id = id }; 60 | _bookLibrary.Books.Add(book); 61 | _bookLibrary.SaveChanges(); 62 | return CreatedAtAction("Get", new { id = book.Id, authorId = authorId }, book); 63 | } 64 | book.Name = bookDto.Name; 65 | _bookLibrary.SaveChanges(); 66 | return NoContent(); 67 | } 68 | 69 | 70 | [HttpDelete("{id}")] 71 | public ActionResult Delete(Guid authorId, Guid id) 72 | { 73 | var author = _bookLibrary.Authors.FirstOrDefault(p => p.Id == authorId); 74 | if (author is null) return NotFound(); 75 | 76 | var book = _bookLibrary.Books.FirstOrDefault(p => p.Id == id); 77 | if (book is null) return NotFound(); 78 | 79 | _bookLibrary.Remove(book); 80 | _bookLibrary.SaveChanges(); 81 | return NoContent(); 82 | } 83 | } 84 | } -------------------------------------------------------------------------------- /RestApiSample/Migrations/20200412200024_initial.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using Microsoft.EntityFrameworkCore; 4 | using Microsoft.EntityFrameworkCore.Infrastructure; 5 | using Microsoft.EntityFrameworkCore.Metadata; 6 | using Microsoft.EntityFrameworkCore.Migrations; 7 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 8 | using RestApiSample.Models; 9 | 10 | namespace RestApiSample.Migrations 11 | { 12 | [DbContext(typeof(BookLibraryContext))] 13 | [Migration("20200412200024_initial")] 14 | partial class initial 15 | { 16 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 17 | { 18 | #pragma warning disable 612, 618 19 | modelBuilder 20 | .HasAnnotation("ProductVersion", "3.1.3") 21 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 22 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 23 | 24 | modelBuilder.Entity("RestApiSample.Models.Entities.Author", b => 25 | { 26 | b.Property("Id") 27 | .ValueGeneratedOnAdd() 28 | .HasColumnType("uniqueidentifier"); 29 | 30 | b.Property("FirstName") 31 | .HasColumnType("nvarchar(max)"); 32 | 33 | b.Property("LastName") 34 | .HasColumnType("nvarchar(max)"); 35 | 36 | b.HasKey("Id"); 37 | 38 | b.ToTable("Authors"); 39 | 40 | b.HasData( 41 | new 42 | { 43 | Id = new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), 44 | FirstName = "Victor Hugo", 45 | LastName = "Hogo" 46 | }, 47 | new 48 | { 49 | Id = new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 50 | FirstName = "Lev", 51 | LastName = "Tolstoy" 52 | }); 53 | }); 54 | 55 | modelBuilder.Entity("RestApiSample.Models.Entities.Book", b => 56 | { 57 | b.Property("Id") 58 | .ValueGeneratedOnAdd() 59 | .HasColumnType("uniqueidentifier"); 60 | 61 | b.Property("AuthorId") 62 | .HasColumnType("uniqueidentifier"); 63 | 64 | b.Property("Name") 65 | .HasColumnType("nvarchar(max)"); 66 | 67 | b.HasKey("Id"); 68 | 69 | b.HasIndex("AuthorId"); 70 | 71 | b.ToTable("Books"); 72 | 73 | b.HasData( 74 | new 75 | { 76 | Id = new Guid("d28888e9-2ba9-473a-a40f-e38cb54f9b35"), 77 | AuthorId = new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), 78 | Name = "Notre Dame'ın Kamburu" 79 | }, 80 | new 81 | { 82 | Id = new Guid("da2fd609-d754-4feb-8acd-c4f9ff13ba96"), 83 | AuthorId = new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), 84 | Name = "Sefiller" 85 | }, 86 | new 87 | { 88 | Id = new Guid("2902b665-1190-4c70-9915-b9c2d7680450"), 89 | AuthorId = new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 90 | Name = "İnsan Ne İle Yaşar" 91 | }, 92 | new 93 | { 94 | Id = new Guid("102b566b-ba1f-404c-b2df-e2cde39ade09"), 95 | AuthorId = new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 96 | Name = "Savaş ve Barış" 97 | }); 98 | }); 99 | 100 | modelBuilder.Entity("RestApiSample.Models.Entities.Book", b => 101 | { 102 | b.HasOne("RestApiSample.Models.Entities.Author", "Author") 103 | .WithMany() 104 | .HasForeignKey("AuthorId") 105 | .OnDelete(DeleteBehavior.Cascade) 106 | .IsRequired(); 107 | }); 108 | #pragma warning restore 612, 618 109 | } 110 | } 111 | } 112 | -------------------------------------------------------------------------------- /RestApiSample/Migrations/20200412200024_initial.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | namespace RestApiSample.Migrations 5 | { 6 | public partial class initial : Migration 7 | { 8 | protected override void Up(MigrationBuilder migrationBuilder) 9 | { 10 | migrationBuilder.CreateTable( 11 | name: "Authors", 12 | columns: table => new 13 | { 14 | Id = table.Column(nullable: false), 15 | FirstName = table.Column(nullable: true), 16 | LastName = table.Column(nullable: true) 17 | }, 18 | constraints: table => 19 | { 20 | table.PrimaryKey("PK_Authors", x => x.Id); 21 | }); 22 | 23 | migrationBuilder.CreateTable( 24 | name: "Books", 25 | columns: table => new 26 | { 27 | Id = table.Column(nullable: false), 28 | Name = table.Column(nullable: true), 29 | AuthorId = table.Column(nullable: false) 30 | }, 31 | constraints: table => 32 | { 33 | table.PrimaryKey("PK_Books", x => x.Id); 34 | table.ForeignKey( 35 | name: "FK_Books_Authors_AuthorId", 36 | column: x => x.AuthorId, 37 | principalTable: "Authors", 38 | principalColumn: "Id", 39 | onDelete: ReferentialAction.Cascade); 40 | }); 41 | 42 | migrationBuilder.InsertData( 43 | table: "Authors", 44 | columns: new[] { "Id", "FirstName", "LastName" }, 45 | values: new object[] { new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), "Victor Hugo", "Hogo" }); 46 | 47 | migrationBuilder.InsertData( 48 | table: "Authors", 49 | columns: new[] { "Id", "FirstName", "LastName" }, 50 | values: new object[] { new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), "Lev", "Tolstoy" }); 51 | 52 | migrationBuilder.InsertData( 53 | table: "Books", 54 | columns: new[] { "Id", "AuthorId", "Name" }, 55 | values: new object[,] 56 | { 57 | { new Guid("d28888e9-2ba9-473a-a40f-e38cb54f9b35"), new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), "Notre Dame'ın Kamburu" }, 58 | { new Guid("da2fd609-d754-4feb-8acd-c4f9ff13ba96"), new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), "Sefiller" }, 59 | { new Guid("2902b665-1190-4c70-9915-b9c2d7680450"), new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), "İnsan Ne İle Yaşar" }, 60 | { new Guid("102b566b-ba1f-404c-b2df-e2cde39ade09"), new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), "Savaş ve Barış" } 61 | }); 62 | 63 | migrationBuilder.CreateIndex( 64 | name: "IX_Books_AuthorId", 65 | table: "Books", 66 | column: "AuthorId"); 67 | } 68 | 69 | protected override void Down(MigrationBuilder migrationBuilder) 70 | { 71 | migrationBuilder.DropTable( 72 | name: "Books"); 73 | 74 | migrationBuilder.DropTable( 75 | name: "Authors"); 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /RestApiSample/Migrations/BookLibraryContextModelSnapshot.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using Microsoft.EntityFrameworkCore; 4 | using Microsoft.EntityFrameworkCore.Infrastructure; 5 | using Microsoft.EntityFrameworkCore.Metadata; 6 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 7 | using RestApiSample.Models; 8 | 9 | namespace RestApiSample.Migrations 10 | { 11 | [DbContext(typeof(BookLibraryContext))] 12 | partial class BookLibraryContextModelSnapshot : ModelSnapshot 13 | { 14 | protected override void BuildModel(ModelBuilder modelBuilder) 15 | { 16 | #pragma warning disable 612, 618 17 | modelBuilder 18 | .HasAnnotation("ProductVersion", "3.1.3") 19 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 20 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 21 | 22 | modelBuilder.Entity("RestApiSample.Models.Entities.Author", b => 23 | { 24 | b.Property("Id") 25 | .ValueGeneratedOnAdd() 26 | .HasColumnType("uniqueidentifier"); 27 | 28 | b.Property("FirstName") 29 | .HasColumnType("nvarchar(max)"); 30 | 31 | b.Property("LastName") 32 | .HasColumnType("nvarchar(max)"); 33 | 34 | b.HasKey("Id"); 35 | 36 | b.ToTable("Authors"); 37 | 38 | b.HasData( 39 | new 40 | { 41 | Id = new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), 42 | FirstName = "Victor Hugo", 43 | LastName = "Hogo" 44 | }, 45 | new 46 | { 47 | Id = new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 48 | FirstName = "Lev", 49 | LastName = "Tolstoy" 50 | }); 51 | }); 52 | 53 | modelBuilder.Entity("RestApiSample.Models.Entities.Book", b => 54 | { 55 | b.Property("Id") 56 | .ValueGeneratedOnAdd() 57 | .HasColumnType("uniqueidentifier"); 58 | 59 | b.Property("AuthorId") 60 | .HasColumnType("uniqueidentifier"); 61 | 62 | b.Property("Name") 63 | .HasColumnType("nvarchar(max)"); 64 | 65 | b.HasKey("Id"); 66 | 67 | b.HasIndex("AuthorId"); 68 | 69 | b.ToTable("Books"); 70 | 71 | b.HasData( 72 | new 73 | { 74 | Id = new Guid("d28888e9-2ba9-473a-a40f-e38cb54f9b35"), 75 | AuthorId = new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), 76 | Name = "Notre Dame'ın Kamburu" 77 | }, 78 | new 79 | { 80 | Id = new Guid("da2fd609-d754-4feb-8acd-c4f9ff13ba96"), 81 | AuthorId = new Guid("48a103e8-e483-48a2-ae94-7a96af854cdb"), 82 | Name = "Sefiller" 83 | }, 84 | new 85 | { 86 | Id = new Guid("2902b665-1190-4c70-9915-b9c2d7680450"), 87 | AuthorId = new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 88 | Name = "İnsan Ne İle Yaşar" 89 | }, 90 | new 91 | { 92 | Id = new Guid("102b566b-ba1f-404c-b2df-e2cde39ade09"), 93 | AuthorId = new Guid("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 94 | Name = "Savaş ve Barış" 95 | }); 96 | }); 97 | 98 | modelBuilder.Entity("RestApiSample.Models.Entities.Book", b => 99 | { 100 | b.HasOne("RestApiSample.Models.Entities.Author", "Author") 101 | .WithMany() 102 | .HasForeignKey("AuthorId") 103 | .OnDelete(DeleteBehavior.Cascade) 104 | .IsRequired(); 105 | }); 106 | #pragma warning restore 612, 618 107 | } 108 | } 109 | } 110 | -------------------------------------------------------------------------------- /RestApiSample/Models/BookLibraryContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using RestApiSample.Models.Entities; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace RestApiSample.Models 9 | { 10 | public class BookLibraryContext : DbContext 11 | { 12 | public DbSet Books { get; set; } 13 | public DbSet Authors { get; set; } 14 | 15 | public BookLibraryContext(DbContextOptions options) : base(options) 16 | { 17 | 18 | } 19 | 20 | protected override void OnModelCreating(ModelBuilder modelBuilder) 21 | { 22 | modelBuilder.Entity().HasData(new Author 23 | { 24 | Id = Guid.Parse("48a103e8-e483-48a2-ae94-7a96af854cdb"), 25 | FirstName = "Victor Hugo", 26 | LastName = "Hogo" 27 | }, 28 | new Author 29 | { 30 | Id = Guid.Parse("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 31 | FirstName = "Lev", 32 | LastName = "Tolstoy" 33 | }); 34 | 35 | modelBuilder.Entity().HasData(new Book 36 | { 37 | Id = Guid.Parse("d28888e9-2ba9-473a-a40f-e38cb54f9b35"), 38 | AuthorId = Guid.Parse("48a103e8-e483-48a2-ae94-7a96af854cdb"), 39 | Name = "Notre Dame'ın Kamburu" 40 | }, 41 | new Book 42 | { 43 | Id = Guid.Parse("da2fd609-d754-4feb-8acd-c4f9ff13ba96"), 44 | AuthorId = Guid.Parse("48a103e8-e483-48a2-ae94-7a96af854cdb"), 45 | Name = "Sefiller" 46 | }, 47 | new Book 48 | { 49 | Id = Guid.Parse("2902b665-1190-4c70-9915-b9c2d7680450"), 50 | AuthorId = Guid.Parse("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 51 | Name = "İnsan Ne İle Yaşar" 52 | }, 53 | new Book 54 | { 55 | Id = Guid.Parse("102b566b-ba1f-404c-b2df-e2cde39ade09"), 56 | AuthorId = Guid.Parse("56b0a249-d3b9-4e6e-9ada-68c9cd37b427"), 57 | Name = "Savaş ve Barış" 58 | } 59 | 60 | ); 61 | 62 | base.OnModelCreating(modelBuilder); 63 | } 64 | 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /RestApiSample/Models/Dto/AuthorCreateDto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace RestApiSample.Models.Dto 7 | { 8 | public class AuthorCreateDto 9 | { 10 | public string FirstName { get; set; } 11 | public string LastName { get; set; } 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /RestApiSample/Models/Dto/AuthorUpdateDto.cs: -------------------------------------------------------------------------------- 1 | namespace RestApiSample.Models.Dto 2 | { 3 | public class AuthorUpdateDto 4 | { 5 | public string FirstName { get; set; } 6 | public string LastName { get; set; } 7 | 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /RestApiSample/Models/Dto/BookCreateDto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace RestApiSample.Models.Dto 7 | { 8 | public class BookCreateDto 9 | { 10 | public string Name { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /RestApiSample/Models/Dto/BookUpdateDto.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace RestApiSample.Models.Dto 7 | { 8 | public class BookUpdateDto 9 | { 10 | public string Name { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /RestApiSample/Models/Entities/Author.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace RestApiSample.Models.Entities 7 | { 8 | public class Author 9 | { 10 | public Guid Id { get; set; } 11 | public string FirstName { get; set; } 12 | public string LastName { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /RestApiSample/Models/Entities/Book.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace RestApiSample.Models.Entities 7 | { 8 | public class Book 9 | { 10 | public Guid Id { get; set; } 11 | public string Name { get; set; } 12 | public virtual Author Author { get; set; } 13 | public virtual Guid AuthorId { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /RestApiSample/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Hosting; 6 | using Microsoft.Extensions.Configuration; 7 | using Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | 10 | namespace RestApiSample 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /RestApiSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:60641", 7 | "sslPort": 44357 8 | } 9 | }, 10 | "$schema": "http://json.schemastore.org/launchsettings.json", 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "api/v1/authors", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "RestApiSample": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "weatherforecast", 24 | "environmentVariables": { 25 | "ASPNETCORE_ENVIRONMENT": "Development" 26 | }, 27 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /RestApiSample/RestApiSample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | 7 | 8 | 9 | 10 | all 11 | runtime; build; native; contentfiles; analyzers; buildtransitive 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /RestApiSample/RestApiSample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ApiControllerEmptyScaffolder 5 | root/Controller 6 | 600 7 | True 8 | False 9 | True 10 | 11 | False 12 | 13 | -------------------------------------------------------------------------------- /RestApiSample/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Builder; 6 | using Microsoft.AspNetCore.Hosting; 7 | using Microsoft.AspNetCore.HttpsPolicy; 8 | using Microsoft.AspNetCore.Mvc; 9 | using Microsoft.EntityFrameworkCore; 10 | using Microsoft.Extensions.Configuration; 11 | using Microsoft.Extensions.DependencyInjection; 12 | using Microsoft.Extensions.Hosting; 13 | using Microsoft.Extensions.Logging; 14 | using RestApiSample.Models; 15 | 16 | namespace RestApiSample 17 | { 18 | public class Startup 19 | { 20 | public Startup(IConfiguration configuration) 21 | { 22 | Configuration = configuration; 23 | } 24 | 25 | public IConfiguration Configuration { get; } 26 | 27 | // This method gets called by the runtime. Use this method to add services to the container. 28 | public void ConfigureServices(IServiceCollection services) 29 | { 30 | services.AddDbContext(options => 31 | { 32 | options.UseSqlServer( 33 | @"Server=(localdb)\mssqllocaldb;Database=BookLibrary;Trusted_Connection=True;"); 34 | }); 35 | services.AddControllers(options => 36 | { 37 | options.ReturnHttpNotAcceptable = true; 38 | }).AddXmlSerializerFormatters(); 39 | } 40 | 41 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 42 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 43 | { 44 | if (env.IsDevelopment()) 45 | { 46 | app.UseDeveloperExceptionPage(); 47 | } 48 | 49 | app.UseHttpsRedirection(); 50 | 51 | app.UseRouting(); 52 | 53 | app.UseAuthorization(); 54 | 55 | app.UseEndpoints(endpoints => 56 | { 57 | 58 | endpoints.MapControllerRoute( 59 | name: "default", 60 | pattern: "api/v1/authors"); 61 | 62 | //endpoints.MapControllers(); 63 | }); 64 | } 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /RestApiSample/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /RestApiSample/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:60641", 7 | "sslPort": 44357 8 | } 9 | }, 10 | "$schema": "http://json.schemastore.org/launchsettings.json", 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "api/v1/authors", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "RestApiSample": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "weatherforecast", 24 | "environmentVariables": { 25 | "ASPNETCORE_ENVIRONMENT": "Development" 26 | }, 27 | "applicationUrl": "https://localhost:5001;http://localhost:5000" 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.exe -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.pdb -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\facet\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\facet\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/RestApiSample.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "3.1.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*" 10 | } 11 | -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("RestApiSample")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("RestApiSample")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("RestApiSample")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7801945431ce7efb65d19aee9038c2a0529b434c 2 | -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 6dbc6decc5c4d22845789030070025249aca027a 2 | -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.assets.cache -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.csproj.CopyComplete -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\appsettings.Development.json 2 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\appsettings.json 3 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Properties\launchSettings.json 4 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\RestApiSample.exe 5 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.csprojAssemblyReference.cache 6 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\staticwebassets\RestApiSample.StaticWebAssets.Manifest.cache 7 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\staticwebassets\RestApiSample.StaticWebAssets.xml 8 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.AssemblyInfoInputs.cache 9 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.AssemblyInfo.cs 10 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.RazorTargetAssemblyInfo.cache 11 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\RestApiSample.deps.json 12 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\RestApiSample.runtimeconfig.json 13 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\RestApiSample.runtimeconfig.dev.json 14 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\RestApiSample.dll 15 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\RestApiSample.pdb 16 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Razor.Language.dll 17 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.dll 18 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.dll 19 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.Workspaces.dll 20 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.Razor.dll 21 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.Workspaces.dll 22 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.dll 23 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll 24 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll 25 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\dotnet-aspnet-codegenerator-design.dll 26 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll 27 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll 28 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll 29 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll 30 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll 31 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\NuGet.Frameworks.dll 32 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Composition.AttributedModel.dll 33 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Composition.Convention.dll 34 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Composition.Hosting.dll 35 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Composition.Runtime.dll 36 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Composition.TypedParts.dll 37 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.resources.dll 38 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.resources.dll 39 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.resources.dll 40 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.resources.dll 41 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.resources.dll 42 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.resources.dll 43 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.resources.dll 44 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.resources.dll 45 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.resources.dll 46 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.resources.dll 47 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.resources.dll 48 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.resources.dll 49 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.resources.dll 50 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.CSharp.resources.dll 51 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.CSharp.resources.dll 52 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.CSharp.resources.dll 53 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.CSharp.resources.dll 54 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.CSharp.resources.dll 55 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.CSharp.resources.dll 56 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.CSharp.resources.dll 57 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.CSharp.resources.dll 58 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll 59 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.CSharp.resources.dll 60 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.CSharp.resources.dll 61 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll 62 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll 63 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 64 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 65 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 66 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 67 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 68 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 69 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 70 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 71 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 72 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 73 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 74 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 75 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 76 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll 77 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.Workspaces.resources.dll 78 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.Workspaces.resources.dll 79 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll 80 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.Workspaces.resources.dll 81 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll 82 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll 83 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll 84 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll 85 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll 86 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll 87 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll 88 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll 89 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.csproj.CopyComplete 90 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.dll 91 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.pdb 92 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll 93 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll 94 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Data.SqlClient.dll 95 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll 96 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll 97 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll 98 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.SqlServer.dll 99 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll 100 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll 101 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll 102 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll 103 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll 104 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll 105 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll 106 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll 107 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll 108 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll 109 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll 110 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.Identity.Client.dll 111 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll 112 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Runtime.Caching.dll 113 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll 114 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 115 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 116 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll 117 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll 118 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll 119 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll 120 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll 121 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll 122 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Design.dll 123 | C:\Users\facet\source\repos\RestApiSample\RestApiSample\obj\Debug\netcoreapp3.1\RestApiSample.MvcApplicationPartsAssemblyInfo.cache 124 | -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.dll -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.exe -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/RestApiSample.pdb -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/staticwebassets/RestApiSample.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyzact/BooksLibrary-RestApiSample/722ac5223b93181f2ce9fa7acf370683914e6046/RestApiSample/obj/Debug/netcoreapp3.1/staticwebassets/RestApiSample.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /RestApiSample/obj/Debug/netcoreapp3.1/staticwebassets/RestApiSample.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /RestApiSample/obj/RestApiSample.csproj.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 1, 3 | "dgSpecHash": "APUbuWdRj0r/AKd6kUE/4uqLY8pMtkqDt5pfg0OduxNNbrjJriEvbQPEYNtYZB2dOwsIvrmqI5kwxlg58U/JCw==", 4 | "success": true 5 | } -------------------------------------------------------------------------------- /RestApiSample/obj/RestApiSample.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\facet\\source\\repos\\RestApiSample\\RestApiSample\\RestApiSample.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\facet\\source\\repos\\RestApiSample\\RestApiSample\\RestApiSample.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\facet\\source\\repos\\RestApiSample\\RestApiSample\\RestApiSample.csproj", 11 | "projectName": "RestApiSample", 12 | "projectPath": "C:\\Users\\facet\\source\\repos\\RestApiSample\\RestApiSample\\RestApiSample.csproj", 13 | "packagesPath": "C:\\Users\\facet\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\facet\\source\\repos\\RestApiSample\\RestApiSample\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 18 | ], 19 | "configFilePaths": [ 20 | "C:\\Users\\facet\\AppData\\Roaming\\NuGet\\NuGet.Config", 21 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 22 | ], 23 | "originalTargetFrameworks": [ 24 | "netcoreapp3.1" 25 | ], 26 | "sources": { 27 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 28 | "https://api.nuget.org/v3/index.json": {} 29 | }, 30 | "frameworks": { 31 | "netcoreapp3.1": { 32 | "projectReferences": {} 33 | } 34 | }, 35 | "warningProperties": { 36 | "warnAsError": [ 37 | "NU1605" 38 | ] 39 | } 40 | }, 41 | "frameworks": { 42 | "netcoreapp3.1": { 43 | "dependencies": { 44 | "Microsoft.EntityFrameworkCore.SqlServer": { 45 | "target": "Package", 46 | "version": "[3.1.3, )" 47 | }, 48 | "Microsoft.EntityFrameworkCore.Tools": { 49 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 50 | "suppressParent": "All", 51 | "target": "Package", 52 | "version": "[3.1.3, )" 53 | }, 54 | "Microsoft.VisualStudio.Web.CodeGeneration.Design": { 55 | "target": "Package", 56 | "version": "[3.1.1, )" 57 | } 58 | }, 59 | "imports": [ 60 | "net461", 61 | "net462", 62 | "net47", 63 | "net471", 64 | "net472", 65 | "net48" 66 | ], 67 | "assetTargetFallback": true, 68 | "warn": true, 69 | "frameworkReferences": { 70 | "Microsoft.AspNetCore.App": { 71 | "privateAssets": "none" 72 | }, 73 | "Microsoft.NETCore.App": { 74 | "privateAssets": "all" 75 | } 76 | }, 77 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.101\\RuntimeIdentifierGraph.json" 78 | } 79 | } 80 | } 81 | } 82 | } -------------------------------------------------------------------------------- /RestApiSample/obj/RestApiSample.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\facet\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.4.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | 19 | C:\Users\facet\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.4 20 | C:\Users\facet\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.3 21 | 22 | -------------------------------------------------------------------------------- /RestApiSample/obj/RestApiSample.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | --------------------------------------------------------------------------------