Skip to content

Commit 6922855

Browse files
committedFeb 4, 2021
Update readme. Target .NET 5.
1 parent 2b12706 commit 6922855

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed
 

‎Conveyor/Conveyor.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net5.0</TargetFramework>
55
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
66
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
77
<IsPackable>false</IsPackable>

‎Conveyor/appsettings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"ConnectionStrings": {
3-
"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet-Conveyor-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true",
3+
"SQLServer": "Server=(localdb)\\mssqllocaldb;Database=aspnet-Conveyor-53bc9b9d-9d6a-45d4-8429-2a2761773502;Trusted_Connection=True;MultipleActiveResultSets=true",
44
"SQLite": "DataSource=Server.db"
55
},
66
"Logging": {

‎README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,22 @@ Demo Site: https://conveyor.lucency.co
55

66
[![Build Status](https://dev.azure.com/translucency/Conveyor/_apis/build/status/Conveyor?branchName=master)](https://dev.azure.com/translucency/Conveyor/_build/latest?definitionId=16&branchName=master)
77

8-
98
## Build Requirements
10-
* .NET Core 3 Preview 6 SDK
9+
* .NET 5 SDK
1110
* Node.js (latest)
1211

1312
## Hosting Requirements
14-
* .NET Core 3 Preview 6 Hosting Bundle
15-
* SQL Server Express
13+
* .NET 5 Runtime (with Hosting Bundle for hosting in IIS on Windows)
14+
* SQL Server Express if `DbProvider` is set to SQLServer.
1615
* You can use either a normal instance or LocalDb. For LocalDb, the application pool must have "Load user profile" set to true in IIS.
1716
* You must specify in appsettings.json a certificate to use for signing authentication tokens. It can be generated through the New-SelfSignedCertifcate cmdlet in PowerShell.
1817
* See here for more info: https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity-api-authorization?view=aspnetcore-3.0#deploy-to-production
1918

2019

20+
## Screenshot
21+
!["Conveyor Screenshot"](https://lucency.co/Images/Screenshots/Conveyor1.jpg)
22+
23+
2124
## Getting Started
2225
On first load, you will can upload and download files anonymously. The links are public (though not searchable), and the file descriptions are saved in localStorage (but not the file itself). Once you create an account, files that are in your browser's localStorage will be transferred to your account.
2326

0 commit comments

Comments
 (0)
Please sign in to comment.