|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - |
3 |
| - <PropertyGroup> |
4 |
| - |
5 |
| - <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> |
6 |
| - |
7 |
| - <LangVersion>10.0</LangVersion> |
8 |
| - <Nullable>enable</Nullable> |
9 |
| - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
10 |
| - |
11 |
| - <AssemblyVersion>8.3.0.0</AssemblyVersion> |
12 |
| - <FileVersion>8.3.0.0</FileVersion> |
13 |
| - <Version>8.3.0</Version> |
14 |
| - |
15 |
| - <Authors>Andreas Nägeli</Authors> |
16 |
| - <Company /> |
17 |
| - |
18 |
| - <PackageLicenseFile>LICENSE</PackageLicenseFile> |
19 |
| - <PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> |
20 |
| - |
21 |
| - <Description>Adds web based login capabilities to the GenHTTP webserver.</Description> |
22 |
| - <PackageTags>HTTP Webserver C# Module Authentication Authorization Security Web Registration Login</PackageTags> |
23 |
| - |
24 |
| - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
25 |
| - <IncludeSymbols>true</IncludeSymbols> |
26 |
| - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
27 |
| - |
28 |
| - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
29 |
| - <NoWarn>CS1591,CS1587,CS1572,CS1573</NoWarn> |
30 |
| - |
31 |
| - <PackageIcon>icon.png</PackageIcon> |
32 |
| - |
33 |
| - </PropertyGroup> |
34 |
| - |
35 |
| - <ItemGroup> |
36 |
| - <None Remove="Resources\style.css" /> |
37 |
| - </ItemGroup> |
38 |
| - |
39 |
| - <ItemGroup> |
40 |
| - <EmbeddedResource Include="Resources\style.css" /> |
41 |
| - <EmbeddedResource Include="Views\EnterAccount.cshtml" /> |
42 |
| - </ItemGroup> |
43 |
| - |
44 |
| - <ItemGroup> |
45 |
| - |
46 |
| - <None Include="..\..\LICENSE" Pack="true" PackagePath="\" /> |
47 |
| - <None Include="..\..\Resources\icon.png" Pack="true" PackagePath="\" /> |
48 |
| - |
49 |
| - </ItemGroup> |
50 |
| - |
51 |
| - <ItemGroup> |
52 |
| - |
53 |
| - <ProjectReference Include="..\..\API\GenHTTP.Api.csproj" /> |
54 |
| - |
55 |
| - <ProjectReference Include="..\Authentication\GenHTTP.Modules.Authentication.csproj" /> |
56 |
| - <ProjectReference Include="..\Controllers\GenHTTP.Modules.Controllers.csproj" /> |
57 |
| - <ProjectReference Include="..\Razor\GenHTTP.Modules.Razor.csproj" /> |
58 |
| - |
59 |
| - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
60 |
| - |
61 |
| - </ItemGroup> |
62 |
| - |
63 |
| -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + |
| 5 | + <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> |
| 6 | + |
| 7 | + <LangVersion>10.0</LangVersion> |
| 8 | + <Nullable>enable</Nullable> |
| 9 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 10 | + |
| 11 | + <AssemblyVersion>8.3.0.0</AssemblyVersion> |
| 12 | + <FileVersion>8.3.0.0</FileVersion> |
| 13 | + <Version>8.3.0</Version> |
| 14 | + |
| 15 | + <Authors>Andreas Nägeli</Authors> |
| 16 | + <Company /> |
| 17 | + |
| 18 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
| 19 | + <PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> |
| 20 | + |
| 21 | + <Description>Adds web based login capabilities to the GenHTTP webserver.</Description> |
| 22 | + <PackageTags>HTTP Webserver C# Module Authentication Authorization Security Web Registration Login</PackageTags> |
| 23 | + |
| 24 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 25 | + <IncludeSymbols>true</IncludeSymbols> |
| 26 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 27 | + |
| 28 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 29 | + <NoWarn>CS1591,CS1587,CS1572,CS1573</NoWarn> |
| 30 | + |
| 31 | + <PackageIcon>icon.png</PackageIcon> |
| 32 | + |
| 33 | + </PropertyGroup> |
| 34 | + |
| 35 | + <ItemGroup> |
| 36 | + <None Remove="Resources\style.css" /> |
| 37 | + </ItemGroup> |
| 38 | + |
| 39 | + <ItemGroup> |
| 40 | + <EmbeddedResource Include="Resources\style.css" /> |
| 41 | + <EmbeddedResource Include="Views\EnterAccount.cshtml" /> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | + <ItemGroup> |
| 45 | + |
| 46 | + <None Include="..\..\LICENSE" Pack="true" PackagePath="\" /> |
| 47 | + <None Include="..\..\Resources\icon.png" Pack="true" PackagePath="\" /> |
| 48 | + |
| 49 | + </ItemGroup> |
| 50 | + |
| 51 | + <ItemGroup> |
| 52 | + |
| 53 | + <ProjectReference Include="..\..\API\GenHTTP.Api.csproj" /> |
| 54 | + |
| 55 | + <ProjectReference Include="..\Authentication\GenHTTP.Modules.Authentication.csproj" /> |
| 56 | + <ProjectReference Include="..\Controllers\GenHTTP.Modules.Controllers.csproj" /> |
| 57 | + <ProjectReference Include="..\Razor\GenHTTP.Modules.Razor.csproj" /> |
| 58 | + <ProjectReference Include="..\Placeholders\GenHTTP.Modules.Placeholders.csproj" /> |
| 59 | + |
| 60 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> |
| 61 | + |
| 62 | + </ItemGroup> |
| 63 | + |
| 64 | +</Project> |
0 commit comments