|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Razor"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>net8.0</TargetFramework> |
| 4 | + <Nullable>enable</Nullable> |
| 5 | + <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <Authors>usercode</Authors> |
| 7 | + <PackageProjectUrl>https://github.com/usercode/ImageWizard</PackageProjectUrl> |
| 8 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 9 | + <PackageIcon>logo.png</PackageIcon> |
| 10 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 11 | + <IncludeSymbols>true</IncludeSymbols> |
| 12 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 13 | + <MinVerTagPrefix>v</MinVerTagPrefix> |
| 14 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 15 | + <NoWarn>CS1591</NoWarn> |
| 16 | + <IsPackable>true</IsPackable> |
| 17 | + </PropertyGroup> |
2 | 18 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>net8.0</TargetFramework> |
5 | | - <Nullable>enable</Nullable> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <Authors>usercode</Authors> |
8 | | - <PackageProjectUrl>https://github.com/usercode/ImageWizard</PackageProjectUrl> |
9 | | - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
10 | | - <PackageIcon>logo.png</PackageIcon> |
11 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
12 | | - <IncludeSymbols>true</IncludeSymbols> |
13 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
14 | | - <MinVerTagPrefix>v</MinVerTagPrefix> |
15 | | - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
16 | | - <NoWarn>CS1591</NoWarn> |
17 | | - </PropertyGroup> |
| 19 | + <ItemGroup> |
| 20 | + <Content Remove="wwwroot\youtube\youtube.css" /> |
| 21 | + <Content Remove="wwwroot\youtube\youtube.js" /> |
| 22 | + <Content Remove="wwwroot\youtube\youtube.svg" /> |
| 23 | + </ItemGroup> |
18 | 24 |
|
19 | | - <ItemGroup> |
20 | | - <Content Remove="wwwroot\youtube\youtube.css" /> |
21 | | - <Content Remove="wwwroot\youtube\youtube.js" /> |
22 | | - <Content Remove="wwwroot\youtube\youtube.svg" /> |
23 | | - </ItemGroup> |
| 25 | + <ItemGroup> |
| 26 | + <EmbeddedResource Include="wwwroot\youtube\youtube.css" /> |
| 27 | + <EmbeddedResource Include="wwwroot\youtube\youtube.js" /> |
| 28 | + <EmbeddedResource Include="wwwroot\youtube\youtube.svg" /> |
| 29 | + </ItemGroup> |
24 | 30 |
|
25 | | - <ItemGroup> |
26 | | - <EmbeddedResource Include="wwwroot\youtube\youtube.css" /> |
27 | | - <EmbeddedResource Include="wwwroot\youtube\youtube.js" /> |
28 | | - <EmbeddedResource Include="wwwroot\youtube\youtube.svg" /> |
29 | | - </ItemGroup> |
| 31 | + <ItemGroup> |
| 32 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
| 33 | + </ItemGroup> |
30 | 34 |
|
31 | | - <ItemGroup> |
32 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
33 | | - </ItemGroup> |
34 | | - |
35 | | - <ItemGroup> |
36 | | - <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
37 | | - </ItemGroup> |
38 | | - |
39 | | - <ItemGroup> |
40 | | - <ProjectReference Include="..\ImageWizard.Utils\ImageWizard.Utils.csproj" /> |
41 | | - </ItemGroup> |
| 35 | + <ItemGroup> |
| 36 | + <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
| 37 | + </ItemGroup> |
42 | 38 |
|
43 | | - <ItemGroup> |
44 | | - <None Include="..\..\logo.png" Pack="true" PackagePath="" /> |
45 | | - </ItemGroup> |
| 39 | + <ItemGroup> |
| 40 | + <ProjectReference Include="..\ImageWizard.Utils\ImageWizard.Utils.csproj" /> |
| 41 | + </ItemGroup> |
46 | 42 |
|
47 | | - <ItemGroup> |
48 | | - <PackageReference Include="MinVer" Version="4.3.0"> |
49 | | - <PrivateAssets>all</PrivateAssets> |
50 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
51 | | - </PackageReference> |
52 | | - </ItemGroup> |
| 43 | + <ItemGroup> |
| 44 | + <None Include="..\..\logo.png" Pack="true" PackagePath="" /> |
| 45 | + </ItemGroup> |
| 46 | + |
| 47 | + <ItemGroup> |
| 48 | + <PackageReference Include="MinVer" Version="4.3.0"> |
| 49 | + <PrivateAssets>all</PrivateAssets> |
| 50 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 51 | + </PackageReference> |
| 52 | + </ItemGroup> |
53 | 53 | </Project> |
0 commit comments