Commit 430c885f authored by Scott DePouw's avatar Scott DePouw

Removed RuntimeFrameworkVersion values hardcoded into projects so that the...

Removed RuntimeFrameworkVersion values hardcoded into projects so that the newest (i.e. 2.1) runtime would be used, to get rid of "System.Runtime 4.2.1.0 file not found" errors when running integration tests.
parent 467b6a6d
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<RuntimeFrameworkVersion>2.0.0</RuntimeFrameworkVersion>
<TargetFramework>netcoreapp2.1</TargetFramework> <TargetFramework>netcoreapp2.1</TargetFramework>
<AssemblyName>CleanArchitecture.Infrastructure</AssemblyName> <AssemblyName>CleanArchitecture.Infrastructure</AssemblyName>
<PackageId>CleanArchitecture.Infrastructure</PackageId> <PackageId>CleanArchitecture.Infrastructure</PackageId>
......
...@@ -7,10 +7,6 @@ ...@@ -7,10 +7,6 @@
<PackageId>CleanArchitecture.Web</PackageId> <PackageId>CleanArchitecture.Web</PackageId>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<RuntimeFrameworkVersion>2.0.0</RuntimeFrameworkVersion>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<Content Update="wwwroot\**\*;Views\**\*;Areas\**\Views;appsettings.json;web.config"> <Content Update="wwwroot\**\*;Views\**\*;Areas\**\Views;appsettings.json;web.config">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
......
...@@ -6,10 +6,6 @@ ...@@ -6,10 +6,6 @@
<PreserveCompilationContext>true</PreserveCompilationContext> <PreserveCompilationContext>true</PreserveCompilationContext>
</PropertyGroup> </PropertyGroup>
<PropertyGroup>
<RuntimeFrameworkVersion>2.0.0</RuntimeFrameworkVersion>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<None Update="xunit.runner.json"> <None Update="xunit.runner.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment