|
1 |
| -<Project Sdk="Microsoft.NET.Sdk.Web"> |
2 |
| - |
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>net5.0</TargetFramework> |
5 |
| - <LangVersion>latest</LangVersion> |
6 |
| - <PackageId>WorldDomination.SimpleHosting</PackageId> |
7 |
| - <Authors>Pure Krome</Authors> |
8 |
| - <Company>World Domination Technologies</Company> |
9 |
| - <Product>Simple : Hosting</Product> |
10 |
| - <Description>Making it simple to customize Hosting for your .NET Core 5.x+ application</Description> |
11 |
| - <Copyright>2020</Copyright> |
12 |
| - <OutputType>Library</OutputType> |
13 |
| - <PackageProjectUrl>https://github.com/PureKrome/SimpleHosting</PackageProjectUrl> |
14 |
| - <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
15 |
| - <RepositoryUrl>https://github.com/PureKrome/SimpleHosting</RepositoryUrl> |
16 |
| - <RepositoryType>.net c# .net-core</RepositoryType> |
17 |
| - <PackageTags>.net dotnet c# netcore aspnetcore aspnet-core hosting world-domination unicorn magicalunicorn magical-unicorn</PackageTags> |
18 |
| - |
19 |
| - <!-- Microsoft.NET.Sdk.Web aren't ment for packaging into dll's. You usually publish a website. |
20 |
| - As such, we need to specify that this is ok to do --> |
21 |
| - <IsPackable>true</IsPackable> |
22 |
| - |
23 |
| - <!-- Source Link. REF: https://github.com/dotnet/sourcelink --> |
24 |
| - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
25 |
| - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
26 |
| - <IncludeSymbols>true</IncludeSymbols> |
27 |
| - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
28 |
| - <PackageIcon>icon.jpg</PackageIcon> |
29 |
| - <PackageIconUrl /> |
30 |
| - |
31 |
| - </PropertyGroup> |
32 |
| - |
33 |
| - <ItemGroup> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk.Web"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net5.0</TargetFramework> |
| 5 | + <LangVersion>latest</LangVersion> |
| 6 | + <PackageId>WorldDomination.SimpleHosting</PackageId> |
| 7 | + <Authors>Pure Krome</Authors> |
| 8 | + <Company>World Domination Technologies</Company> |
| 9 | + <Product>Simple : Hosting</Product> |
| 10 | + <Description>Making it simple to customize Hosting for your .NET Core 5.x+ application</Description> |
| 11 | + <Copyright>2020</Copyright> |
| 12 | + <OutputType>Library</OutputType> |
| 13 | + <PackageProjectUrl>https://github.com/PureKrome/SimpleHosting</PackageProjectUrl> |
| 14 | + <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
| 15 | + <RepositoryUrl>https://github.com/PureKrome/SimpleHosting</RepositoryUrl> |
| 16 | + <RepositoryType>.net c# .net-core</RepositoryType> |
| 17 | + <PackageTags>.net dotnet c# netcore aspnetcore aspnet-core hosting world-domination unicorn magicalunicorn magical-unicorn</PackageTags> |
| 18 | + |
| 19 | + <!-- Microsoft.NET.Sdk.Web aren't ment for packaging into dll's. You usually publish a website. |
| 20 | + As such, we need to specify that this is ok to do --> |
| 21 | + <IsPackable>true</IsPackable> |
| 22 | + |
| 23 | + <!-- Source Link. REF: https://github.com/dotnet/sourcelink --> |
| 24 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 25 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 26 | + <IncludeSymbols>true</IncludeSymbols> |
| 27 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 28 | + <PackageIcon>icon.jpg</PackageIcon> |
| 29 | + <PackageIconUrl /> |
| 30 | + |
| 31 | + </PropertyGroup> |
| 32 | + |
| 33 | + <ItemGroup> |
34 | 34 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
|
35 | 35 | <PrivateAssets>all</PrivateAssets>
|
36 | 36 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
37 |
| - </PackageReference> |
38 |
| - <PackageReference Include="Serilog.AspNetCore" Version="3.4.0" /> |
39 |
| - <PackageReference Include="Serilog.Settings.Configuration" Version="3.1.0" /> |
40 |
| - </ItemGroup> |
41 |
| - |
42 |
| - <ItemGroup> |
43 |
| - <None Include="..\..\LICENSE.txt"> |
44 |
| - <Pack>True</Pack> |
45 |
| - <PackagePath></PackagePath> |
| 37 | + </PackageReference> |
| 38 | + <PackageReference Include="Serilog.AspNetCore" Version="3.4.0" /> |
| 39 | + <PackageReference Include="Serilog.Settings.Configuration" Version="3.1.0" /> |
| 40 | + </ItemGroup> |
| 41 | + |
| 42 | + <ItemGroup> |
| 43 | + <None Include="..\..\LICENSE.txt"> |
| 44 | + <Pack>True</Pack> |
| 45 | + <PackagePath></PackagePath> |
46 | 46 | </None>
|
47 | 47 | <None Include="..\..\icon.jpg">
|
48 | 48 | <Pack>True</Pack>
|
49 | 49 | <PackagePath></PackagePath>
|
50 |
| - </None> |
51 |
| - </ItemGroup> |
52 |
| - |
53 |
| -</Project> |
| 50 | + </None> |
| 51 | + </ItemGroup> |
| 52 | + |
| 53 | +</Project> |
0 commit comments