From 995da1f6a7a349bb2aef512753701816e04f0bcd Mon Sep 17 00:00:00 2001
From: Michael Husted <gr33m11@gmail.com>
Date: Fri, 8 Feb 2019 16:34:57 -0600
Subject: [PATCH] bump version & fix csproj

---
 Volte/Core/Runtime/Version.cs | 2 +-
 Volte/Volte.csproj            | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/Volte/Core/Runtime/Version.cs b/Volte/Core/Runtime/Version.cs
index 63501316..fb862720 100644
--- a/Volte/Core/Runtime/Version.cs
+++ b/Volte/Core/Runtime/Version.cs
@@ -2,7 +2,7 @@
     public static class Version {
         private static readonly int Major = 2;
         private static readonly int Minor = 0;
-        private static readonly int Patch = 3;
+        private static readonly int Patch = 4;
         private static readonly int Hotfix = 0;
         private static readonly ReleaseType ReleaseType = ReleaseType.Release;
 
diff --git a/Volte/Volte.csproj b/Volte/Volte.csproj
index ad23373c..1ce9015a 100644
--- a/Volte/Volte.csproj
+++ b/Volte/Volte.csproj
@@ -1,13 +1,12 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <OutputType>Exe</OutputType>
-    <TargetFramework>netcoreapp3.0</TargetFramework>
-    <LangVersion>8.0</LangVersion>
+    <TargetFramework>netcoreapp2.1</TargetFramework>
+    <LangVersion>latest</LangVersion>
     <StartupObject>Volte.Core.Runtime.Program</StartupObject>
     <NoWin32Manifest>true</NoWin32Manifest>
     <Authors>GreemDev</Authors>
     <Company>GreemDev</Company>
-    <Version>2.0.3</Version>
     <PackageProjectUrl>https://volte.greemdev.net</PackageProjectUrl>
     <RepositoryUrl>https://github.com/GreemDev/Volte</RepositoryUrl>
   </PropertyGroup>