Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
upgrade to .net 5.0
  • Loading branch information
saadshams committed Dec 25, 2020
1 parent 1797f38 commit 4a9adcb
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 7 deletions.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
*.swp
*.*~
project.lock.json
.DS_Store
*.pyc
nupkg/

# Visual Studio Code
.vscode

# Rider
.idea

# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
[Oo]ut/
msbuild.log
msbuild.err
msbuild.wrn

# Visual Studio 2015
.vs/
9 changes: 4 additions & 5 deletions PureMVC/PureMVC.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<PackageId>PureMVC</PackageId>
<Version>4.1.0</Version>
<Version>4.2.0</Version>
<Description>PureMVC is a lightweight framework for creating applications based upon the classic Model-View-Controller design meta-pattern.</Description>
<Copyright>Copyright © 2020 Saad Shams, Futurescale, Inc.</Copyright>
<license>Creative Commons Attribution 3.0</license>
Expand All @@ -15,11 +15,10 @@
<Authors>Saad Shams</Authors>
<Company>Futurescale, Inc.</Company>
<PackageTags>PureMVC Standard MVC</PackageTags>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<FileVersion>4.1.0.0</FileVersion>
<AssemblyVersion>4.2.0.0</AssemblyVersion>
<FileVersion>4.2.0.0</FileVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<LangVersion>8</LangVersion>
</PropertyGroup>

</Project>
4 changes: 2 additions & 2 deletions PureMVCTests/PureMVCTests.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>net5.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0"/>
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0"/>
<PackageReference Include="MSTest.TestFramework" Version="1.4.0"/>
<PackageReference Include="coverlet.collector" Version="1.0.1"/>
Expand Down

0 comments on commit 4a9adcb

Please sign in to comment.