|
4 | 4 | <RootNamespace>Egil.RazorComponents.Testing</RootNamespace> |
5 | 5 | <TargetFramework>netstandard2.0</TargetFramework> |
6 | 6 | <RazorLangVersion>3.0</RazorLangVersion> |
7 | | - <LangVersion>8.0</LangVersion> |
8 | | - <Nullable>enable</Nullable> |
9 | | - <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
10 | 7 | <PackageId>Razor.Components.Testing.Library</PackageId> |
11 | 8 | <PackageLicenseExpression></PackageLicenseExpression> |
12 | 9 | <PackageLicenseFile>LICENSE</PackageLicenseFile> |
13 | 10 | <RepositoryUrl>https://github.com/egil/razor-components-testing-library</RepositoryUrl> |
| 11 | + <RepositoryType>git</RepositoryType> |
14 | 12 | <PackageProjectUrl>https://github.com/egil/razor-components-testing-library</PackageProjectUrl> |
15 | 13 | <PackageTags>razor-components unit-testing testing blazor blazor-server-side blazor-client-side</PackageTags> |
16 | 14 | <Version>0.1.0-preview9-19424-4-3</Version> |
|
20 | 18 | <Description> |
21 | 19 | Testing library for Razor Components, that allows you to easily define your component under test and the expected output HTML in a .razor files. See the projects GitHub page for usage details: https://github.com/egil/razor-components-testing-library |
22 | 20 | </Description> |
| 21 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 22 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 23 | + <IncludeSymbols>true</IncludeSymbols> |
| 24 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
23 | 25 | </PropertyGroup> |
24 | 26 |
|
| 27 | + <ItemGroup> |
| 28 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19554-01" PrivateAssets="All" /> |
| 29 | + </ItemGroup> |
| 30 | + |
25 | 31 | <ItemGroup> |
26 | 32 | <PackageReference Include="AngleSharp" Version="0.13.0" /> |
27 | | - <PackageReference Include="Microsoft.AspNetCore.Components" Version="$(AspNetCoreVersion)" /> |
28 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(AspNetCoreVersion)" /> |
29 | | - <PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="2.9.4"> |
30 | | - <PrivateAssets>all</PrivateAssets> |
31 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
32 | | - </PackageReference> |
33 | | - <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.4"> |
| 33 | + <PackageReference Include="AngleSharp.Css" Version="0.13.0" /> |
| 34 | + <PackageReference Include="AngleSharp.Diffing" Version="0.13.0-preview-2" /> |
| 35 | + <PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.0-preview2.19528.8" /> |
| 36 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.0-preview2.19528.8" /> |
| 37 | + <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.7"> |
34 | 38 | <PrivateAssets>all</PrivateAssets> |
35 | 39 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
36 | 40 | </PackageReference> |
37 | | - <PackageReference Include="XMLUnit.Core" Version="2.7.1" /> |
38 | 41 | <PackageReference Include="xunit.assert" Version="2.4.1" /> |
39 | 42 | <PackageReference Include="xunit.extensibility.core" Version="2.4.1" /> |
40 | 43 | </ItemGroup> |
|
0 commit comments