Skip to content

Commit

Permalink
Fix building using dotnet build
Browse files Browse the repository at this point in the history
  • Loading branch information
CZEMacLeod committed Sep 23, 2021
1 parent 5c9da60 commit 37e0305
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,4 @@ If you are using Code-First migrations, you can add the following to automatical
## Known Items

* `EntityView` - One or more edmx files used to generate the Views. Only the latest (alphabetically last) file is used.
* `CustomToolNamespace` - Property of the `EntityView` item used to determine the namespace of the DBContext. The DBContext name itself is determined from the EDMX file.



* `CustomToolNamespace` - Item Metadata of the `EntityView` item used to determine the namespace of the DBContext. The DBContext name itself is determined from the EDMX file.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<NugetPackagesPath Condition="'$(NugetPackagesPath)' == ''">$([System.IO.Path]::GetFullPath($([System.IO.Path]::Combine($(MSBuildThisFileDirectory),'..\..\'))))</NugetPackagesPath>

<EntityFramework6GenerateViewsPath Condition="'$(MSBuildRuntimeType)'=='Full'">$([System.IO.Path]::GetFullPath($([System.IO.Path]::Combine($(MSBuildThisFileDirectory),'..\tools\net472\'))))</EntityFramework6GenerateViewsPath>
<EntityFramework6GenerateViewsPath Condition="'$(MSBuildRuntimeType)'=='Core'">$([System.IO.Path]::GetFullPath($([System.IO.Path]::Combine($(MSBuildThisFileDirectory),'..\tools\netstandard2.1\')))) </EntityFramework6GenerateViewsPath>
<EntityFramework6GenerateViewsPath Condition="'$(MSBuildRuntimeType)'=='Core'">$([System.IO.Path]::GetFullPath($([System.IO.Path]::Combine($(MSBuildThisFileDirectory),'..\tools\netstandard2.1\'))))</EntityFramework6GenerateViewsPath>
</PropertyGroup>

<ItemGroup Condition="'$(BuildingInsideVisualStudio)'=='true'">
Expand Down

0 comments on commit 37e0305

Please sign in to comment.