|
4 | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | 5 | </PropertyGroup> |
6 | 6 |
|
| 7 | + <!-- For source link --> |
| 8 | + <PropertyGroup> |
| 9 | + <!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) --> |
| 10 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 11 | + |
| 12 | + <!-- Embed source files that are not tracked by the source control manager in the PDB --> |
| 13 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 14 | + |
| 15 | + <!-- Recommended: Embed symbols containing Source Link in the main file (exe/dll) --> |
| 16 | + <DebugType>embedded</DebugType> |
| 17 | + |
| 18 | + </PropertyGroup> |
| 19 | + <!-- This is only for azure devops. This makes the build deterministic so the source link can found simpler. Don't use this for development. You wouldn't able to debug. --> |
| 20 | + <PropertyGroup Condition="'$(TF_BUILD)' == 'true'"> |
| 21 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 22 | + </PropertyGroup> |
| 23 | + |
7 | 24 | <PropertyGroup> |
8 | 25 | <Authors>Kirsten Kluge, paule96</Authors> |
9 | | - <PackageProjectUrl>https://github.com/kirkone/CZ.AspNetCore.EasyAuthAuthentication</PackageProjectUrl> |
10 | | - <RepositoryUrl>https://github.com/kirkone/CZ.AspNetCore.EasyAuthAuthentication</RepositoryUrl> |
| 26 | + <PackageProjectUrl>https://github.com/codez-one/CZ.AspNetCore.EasyAuthAuthentication</PackageProjectUrl> |
| 27 | + <RepositoryUrl>https://github.com/codez-one/CZ.AspNetCore.EasyAuthAuthentication</RepositoryUrl> |
11 | 28 | <Description>This helps getting azure appservice authentication working with asp.net core</Description> |
12 | 29 | <PackageReleaseNotes> |
13 | 30 | - Add support for azure ad application |
|
17 | 34 | - add a new quickstart guide |
18 | 35 | - add errors if the azure app service is configured wrong |
19 | 36 | - add test so we avoid breaking changes |
| 37 | + - add source link for simpler development |
20 | 38 | </PackageReleaseNotes> |
21 | 39 | <Copyright>MIT</Copyright> |
22 | 40 | <LangVersion>8.0</LangVersion> |
23 | 41 | <Nullable>enable</Nullable> |
24 | 42 | <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
25 | 43 | <WarningsAsErrors> |
26 | | - CS8600;CS8602;CS8603<!--The identifiers are all for nullable errors. See here: https://www.tabsoverspaces.com/233764-switch-to-errors-instead-of-warnings-for-nullable-reference-types-in-csharp-8--> |
| 44 | + CS8600;CS8602;CS8603 <!--The identifiers are all for nullable errors. See here: https://www.tabsoverspaces.com/233764-switch-to-errors-instead-of-warnings-for-nullable-reference-types-in-csharp-8--> |
27 | 45 | </WarningsAsErrors> |
28 | 46 | <EnableNETAnalyzers>true</EnableNETAnalyzers> |
29 | 47 | </PropertyGroup> |
|
35 | 53 | <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.1.0" /> |
36 | 54 | <PackageReference Include="Newtonsoft.Json" Version="11.0.2" /> |
37 | 55 | <PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.3.0" /> |
| 56 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/> |
38 | 57 | </ItemGroup> |
39 | 58 | </Project> |
0 commit comments