-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9571fc
commit f532399
Showing
5 changed files
with
211 additions
and
211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,58 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
|
||
<AssemblyVersion>2.4.0.0</AssemblyVersion> | ||
<FileVersion>2.4.0.0</FileVersion> | ||
<Version>2.4.0</Version> | ||
|
||
<Authors>Andreas Nägeli</Authors> | ||
<Company /> | ||
|
||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> | ||
|
||
<Description>Lightweight web server written in pure C# with few dependencies to 3rd-party libraries.</Description> | ||
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
|
||
<None Include="..\..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="Resources\Template.html" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\Template.html" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
||
<ProjectReference Include="..\..\API\GenHTTP.API\GenHTTP.Api.csproj" /> | ||
<ProjectReference Include="..\..\Modules\GenHTTP.Modules.Core\GenHTTP.Modules.Core.csproj" /> | ||
|
||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="System.Buffers" Version="4.5.0" /> | ||
|
||
</ItemGroup> | ||
|
||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
|
||
<AssemblyVersion>2.4.1.0</AssemblyVersion> | ||
<FileVersion>2.4.1.0</FileVersion> | ||
<Version>2.4.1</Version> | ||
|
||
<Authors>Andreas Nägeli</Authors> | ||
<Company /> | ||
|
||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> | ||
|
||
<Description>Lightweight web server written in pure C# with few dependencies to 3rd-party libraries.</Description> | ||
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
|
||
<None Include="..\..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="Resources\Template.html" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\Template.html" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
||
<ProjectReference Include="..\..\API\GenHTTP.API\GenHTTP.Api.csproj" /> | ||
<ProjectReference Include="..\..\Modules\GenHTTP.Modules.Core\GenHTTP.Modules.Core.csproj" /> | ||
|
||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="System.Buffers" Version="4.5.0" /> | ||
|
||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,49 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
|
||
<AssemblyVersion>2.4.0.0</AssemblyVersion> | ||
<FileVersion>2.4.0.0</FileVersion> | ||
<Version>2.4.0</Version> | ||
|
||
<Authors>Andreas Nägeli</Authors> | ||
<Company /> | ||
|
||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> | ||
|
||
<Description>Core modules of the GenHTTP webserver. Provides basic features such as navigation, layouting, static content or downloads.</Description> | ||
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
|
||
<None Include="..\..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
||
<ProjectReference Include="..\..\API\GenHTTP.API\GenHTTP.Api.csproj" /> | ||
|
||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="System.Buffers" Version="4.5.0" /> | ||
|
||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
|
||
<AssemblyVersion>2.4.1.0</AssemblyVersion> | ||
<FileVersion>2.4.1.0</FileVersion> | ||
<Version>2.4.1</Version> | ||
|
||
<Authors>Andreas Nägeli</Authors> | ||
<Company /> | ||
|
||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> | ||
|
||
<Description>Core modules of the GenHTTP webserver. Provides basic features such as navigation, layouting, static content or downloads.</Description> | ||
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
|
||
<None Include="..\..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
||
<ProjectReference Include="..\..\API\GenHTTP.API\GenHTTP.Api.csproj" /> | ||
|
||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="System.Buffers" Version="4.5.0" /> | ||
|
||
</ItemGroup> | ||
|
||
</Project> |
104 changes: 52 additions & 52 deletions
104
Modules/GenHTTP.Modules.Scriban/GenHTTP.Modules.Scriban.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,52 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
|
||
<AssemblyVersion>2.4.0.0</AssemblyVersion> | ||
<FileVersion>2.4.0.0</FileVersion> | ||
<Version>2.4.0</Version> | ||
|
||
<Authors>Andreas Nägeli</Authors> | ||
<Company /> | ||
|
||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> | ||
|
||
<Description>Provides renderers based on the Scriban templating engine that can be used to render websites in projects running on the GenHTTP webserver.</Description> | ||
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
|
||
<None Include="..\..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Scriban" Version="2.1.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
||
<ProjectReference Include="..\..\API\GenHTTP.API\GenHTTP.Api.csproj" /> | ||
<ProjectReference Include="..\GenHTTP.Modules.Core\GenHTTP.Modules.Core.csproj" /> | ||
|
||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
|
||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
|
||
<AssemblyVersion>2.4.1.0</AssemblyVersion> | ||
<FileVersion>2.4.1.0</FileVersion> | ||
<Version>2.4.1</Version> | ||
|
||
<Authors>Andreas Nägeli</Authors> | ||
<Company /> | ||
|
||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
<PackageProjectUrl>https://genhttp.org/</PackageProjectUrl> | ||
|
||
<Description>Provides renderers based on the Scriban templating engine that can be used to render websites in projects running on the GenHTTP webserver.</Description> | ||
|
||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
|
||
<None Include="..\..\LICENSE"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
|
||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Scriban" Version="2.1.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
|
||
<ProjectReference Include="..\..\API\GenHTTP.API\GenHTTP.Api.csproj" /> | ||
<ProjectReference Include="..\GenHTTP.Modules.Core\GenHTTP.Modules.Core.csproj" /> | ||
|
||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.