Skip to content

Commit

Permalink
Various fixes for issues in efcore-in-VMR build (#33540)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoritzinsky committed Apr 15, 2024
1 parent 2b6ba12 commit a6d02a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Directory.Build.props
Expand Up @@ -10,6 +10,7 @@
( $(MSBuildProjectName.EndsWith('.Tests')) OR
$(MSBuildProjectName.EndsWith('.FunctionalTests'))) ">true</IsUnitTestProject>
<IsUnitTestProject Condition=" '$(IsUnitTestProject)' == '' ">false</IsUnitTestProject>
<IsTestUtilityProject Condition="'$(IsSpecificationTestProject)' == 'true'">true</IsTestUtilityProject>
<SolutionRoot>$(MSBuildThisFileDirectory)</SolutionRoot>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-ef/Project.cs
Expand Up @@ -58,7 +58,7 @@ public Project(string file, string? framework, string? configuration, string? ru
"Microsoft.EntityFrameworkCore.Tools.Resources.EntityFrameworkCore.targets")!)
{
efTargets = new byte[input.Length];
input.Read(efTargets);
input.ReadExactly(efTargets);
}

var efTargetsPath = Path.Combine(
Expand Down

0 comments on commit a6d02a6

Please sign in to comment.