Skip to content

Commit dbdf1ab

Browse files
authored
5.0.2 Release (#155)
* Update solution files * Update versions * Update documentation
1 parent f417a57 commit dbdf1ab

File tree

8 files changed

+459
-55
lines changed

8 files changed

+459
-55
lines changed

.editorconfig

Lines changed: 356 additions & 7 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 92 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
4+
## Get latest from `dotnet new gitignore`
5+
6+
# dotenv files
7+
.env
58

69
# User-specific files
710
*.rsuser
@@ -57,11 +60,14 @@ dlldata.c
5760
# Benchmark Results
5861
BenchmarkDotNet.Artifacts/
5962

60-
# .NET Core
63+
# .NET
6164
project.lock.json
6265
project.fragment.lock.json
6366
artifacts/
6467

68+
# Tye
69+
.tye/
70+
6571
# ASP.NET Scaffolding
6672
ScaffoldingReadMe.txt
6773

@@ -206,9 +212,6 @@ PublishScripts/
206212
*.nuget.props
207213
*.nuget.targets
208214

209-
# Nuget personal access tokens and Credentials
210-
# nuget.config
211-
212215
# Microsoft Azure Build Output
213216
csx/
214217
*.build.csdef
@@ -364,6 +367,9 @@ ASALocalRun/
364367
# Local History for Visual Studio
365368
.localhistory/
366369

370+
# Visual Studio History (VSHistory) files
371+
.vshistory/
372+
367373
# BeatPulse healthcheck temp database
368374
healthchecksdb
369375

@@ -395,4 +401,84 @@ FodyWeavers.xsd
395401
*.msp
396402

397403
# JetBrains Rider
398-
*.sln.iml
404+
*.sln.iml
405+
.idea
406+
407+
##
408+
## Visual studio for Mac
409+
##
410+
411+
412+
# globs
413+
Makefile.in
414+
*.userprefs
415+
*.usertasks
416+
config.make
417+
config.status
418+
aclocal.m4
419+
install-sh
420+
autom4te.cache/
421+
*.tar.gz
422+
tarballs/
423+
test-results/
424+
425+
# Mac bundle stuff
426+
*.dmg
427+
*.app
428+
429+
# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
430+
# General
431+
.DS_Store
432+
.AppleDouble
433+
.LSOverride
434+
435+
# Icon must end with two \r
436+
Icon
437+
438+
439+
# Thumbnails
440+
._*
441+
442+
# Files that might appear in the root of a volume
443+
.DocumentRevisions-V100
444+
.fseventsd
445+
.Spotlight-V100
446+
.TemporaryItems
447+
.Trashes
448+
.VolumeIcon.icns
449+
.com.apple.timemachine.donotpresent
450+
451+
# Directories potentially created on remote AFP share
452+
.AppleDB
453+
.AppleDesktop
454+
Network Trash Folder
455+
Temporary Items
456+
.apdisk
457+
458+
# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
459+
# Windows thumbnail cache files
460+
Thumbs.db
461+
ehthumbs.db
462+
ehthumbs_vista.db
463+
464+
# Dump file
465+
*.stackdump
466+
467+
# Folder config file
468+
[Dd]esktop.ini
469+
470+
# Recycle Bin used on file shares
471+
$RECYCLE.BIN/
472+
473+
# Windows Installer files
474+
*.cab
475+
*.msi
476+
*.msix
477+
*.msm
478+
*.msp
479+
480+
# Windows shortcuts
481+
*.lnk
482+
483+
# Vim temporary swap files
484+
*.swp

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,6 @@ Grapevine is a fast, unopinionated, embeddable, minimalist web framework for .NE
88

99
Grapevine is available on [NuGet.org](https://www.nuget.org/packages/Grapevine/) and can be installed using a NuGet package manager or the .NET CLI.
1010

11-
Powershell:
12-
```powershell
13-
Install-Package Grapevine -Version 5.0.0-rc.10
14-
```
15-
16-
.NET CLI
17-
```cmd
18-
> dotnet add package Grapevine --version 5.0.0-rc.10
19-
```
20-
2111
## Usage
2212

2313
Grapevine is easy to get started with.

src/Grapeseed/Grapeseed.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1313
<AssemblyVersion>$(Version)</AssemblyVersion>
1414
<FileVersion>$(Version)</FileVersion>
15-
<Version>6.0.0-beta</Version>
15+
<Version>5.0.2</Version>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1717
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1818
<RepositoryUrl>https://github.com/scottoffen/grapevine</RepositoryUrl>
@@ -26,7 +26,7 @@
2626
</PropertyGroup>
2727

2828
<ItemGroup>
29-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
29+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0" />
3030
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
3131
</ItemGroup>
3232

src/Grapevine/Grapevine.csproj

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageTags>rest http api web router client server express json xml embedded</PackageTags>
1414
<AssemblyVersion>$(Version)</AssemblyVersion>
1515
<FileVersion>$(Version)</FileVersion>
16-
<Version>6.0.0-beta</Version>
16+
<Version>5.0.2</Version>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1818
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1919
<RepositoryUrl>https://github.com/scottoffen/grapevine</RepositoryUrl>
@@ -27,28 +27,14 @@
2727
</PropertyGroup>
2828

2929
<ItemGroup>
30+
<PackageReference Include="Grapeseed" Version="5.0.2" />
3031
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
3132
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
32-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
33+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0" />
3334
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
3435
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
3536
</ItemGroup>
3637

37-
<ItemGroup>
38-
<Compile Update="Resources\Messages.Designer.cs">
39-
<DesignTime>True</DesignTime>
40-
<AutoGen>True</AutoGen>
41-
<DependentUpon>Messages.resx</DependentUpon>
42-
</Compile>
43-
</ItemGroup>
44-
45-
<ItemGroup>
46-
<EmbeddedResource Update="Resources\Messages.resx">
47-
<Generator>ResXFileCodeGenerator</Generator>
48-
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
49-
</EmbeddedResource>
50-
</ItemGroup>
51-
5238
<ItemGroup>
5339
<None Include="..\..\LICENSE" Pack="true" Visible="false" PackagePath="" />
5440
<None Include="..\..\grapevine.png" Pack="true" PackagePath="\" />
@@ -60,8 +46,4 @@
6046
</AssemblyAttribute>
6147
</ItemGroup>
6248

63-
<ItemGroup>
64-
<ProjectReference Include="..\Grapeseed\Grapeseed.csproj" />
65-
</ItemGroup>
66-
6749
</Project>

src/Samples/Samples.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,12 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net5.0</TargetFramework>
66
<NoWarn>NETSDK1138</NoWarn>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<ProjectReference Include="..\Grapevine\Grapevine.csproj" />
11-
</ItemGroup>
12-
13-
<ItemGroup>
10+
<PackageReference Include="Grapevine" Version="5.0.2" />
1411
<PackageReference Include="FluentHttpClient" Version="1.4.0" />
1512
<PackageReference Include="HttpMultipartParser" Version="5.0.1" />
1613
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />

src/Samples/appsettings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"NLog":{
33
"internalLogLevel":"Info",
4-
"internalLogFile":"c:\\temp\\internal-nlog.txt",
4+
"internalLogFile":"internal-nlog.log",
55
"extensions": [
66
{ "assembly": "NLog.Extensions.Logging" }
77
],
88
"targets":{
99
"log-file":{
1010
"type":"File",
11-
"fileName":"c:\\temp\\grapevine-sample-${shortdate}.log",
11+
"fileName":"grapevine-sample-${shortdate}.log",
1212
"layout":"${longdate}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}|${all-event-properties}"
1313
},
1414
"log-console":{

src/Samples/nlog.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xsi:schemaLocation="NLog NLog.xsd"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
55
autoReload="true"
6-
internalLogFile="c:\temp\grapevine-sample-internal.log"
6+
internalLogFile="grapevine-sample-internal.log"
77
internalLogLevel="Info" >
88

99
<!-- the targets to write to -->
1010
<targets>
1111
<!-- write logs to file -->
12-
<target xsi:type="File" name="logfile" fileName="c:\temp\grapevine-sample.log"
12+
<target xsi:type="File" name="logfile" fileName="grapevine-sample.log"
1313
layout="${longdate}|${level}|${message} |${all-event-properties} ${exception:format=tostring}" />
1414
<target xsi:type="Console" name="logconsole"
1515
layout="${longdate}|${level}|${message} |${all-event-properties} ${exception:format=tostring}" />

0 commit comments

Comments
 (0)