|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>net8.0</TargetFramework> |
5 |
| - <noWarn>1591</noWarn> |
6 |
| - <ApplicationIcon /> |
7 |
| - <OutputType>Library</OutputType> |
8 |
| - <IsPackable>True</IsPackable> |
9 |
| - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
10 |
| - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
11 |
| - <IncludeSymbols>true</IncludeSymbols> |
12 |
| - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
13 |
| - <StartupObject /> |
14 |
| - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0</TargetFramework> |
| 5 | + <noWarn>1591</noWarn> |
| 6 | + <ApplicationIcon /> |
| 7 | + <OutputType>Library</OutputType> |
| 8 | + <IsPackable>True</IsPackable> |
| 9 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 10 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 11 | + <IncludeSymbols>true</IncludeSymbols> |
| 12 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 13 | + <StartupObject /> |
| 14 | + </PropertyGroup> |
15 | 15 |
|
16 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
17 |
| - <NoWarn>1701;1702;1705;1591</NoWarn> |
18 |
| - <DocumentationFile>VirtoCommerce.Platform.Core.xml</DocumentationFile> |
19 |
| - </PropertyGroup> |
| 16 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 17 | + <NoWarn>1701;1702;1705;1591</NoWarn> |
| 18 | + <DocumentationFile>VirtoCommerce.Platform.Core.xml</DocumentationFile> |
| 19 | + </PropertyGroup> |
20 | 20 |
|
21 |
| - <ItemGroup> |
22 |
| - <Folder Include="Messages\" /> |
23 |
| - <Folder Include="Specifications\" /> |
24 |
| - </ItemGroup> |
| 21 | + <ItemGroup> |
| 22 | + <Folder Include="Messages\" /> |
| 23 | + <Folder Include="Specifications\" /> |
| 24 | + </ItemGroup> |
25 | 25 |
|
26 |
| - <ItemGroup> |
27 |
| - <PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.22.0" /> |
28 |
| - <PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" /> |
29 |
| - <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" /> |
30 |
| - <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> |
31 |
| - <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" /> |
32 |
| - <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.0" /> |
33 |
| - <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> |
34 |
| - <PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" /> |
35 |
| - <PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0.0" /> |
36 |
| - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
37 |
| - <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
38 |
| - <PackageReference Include="Serilog" Version="3.1.1" /> |
39 |
| - <PackageReference Include="System.IO.Abstractions" Version="20.0.4" /> |
40 |
| - </ItemGroup> |
| 26 | + <ItemGroup> |
| 27 | + <PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.22.0" /> |
| 28 | + <PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" /> |
| 29 | + <PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" /> |
| 30 | + <PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> |
| 31 | + <PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" /> |
| 32 | + <PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.0" /> |
| 33 | + <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> |
| 34 | + <PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" /> |
| 35 | + <PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0.0" /> |
| 36 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
| 37 | + <PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> |
| 38 | + <PackageReference Include="Serilog" Version="3.1.1" /> |
| 39 | + <PackageReference Include="System.IO.Abstractions" Version="20.0.4" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <!--Workaround for vulnerable transitive packages--> |
| 43 | + <ItemGroup> |
| 44 | + <PackageReference Include="System.Text.Encodings.Web" Version="4.5.1" /> |
| 45 | + </ItemGroup> |
41 | 46 |
|
42 | 47 | </Project>
|
0 commit comments