-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathef.csproj
More file actions
77 lines (68 loc) · 3.22 KB
/
ef.csproj
File metadata and controls
77 lines (68 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
<Description>Entity Framework Core Command-line Tools</Description>
<OutputType>Exe</OutputType>
<IsPackable>false</IsPackable>
<RootNamespace>Microsoft.EntityFrameworkCore.Tools</RootNamespace>
<CheckEolTargetFramework>False</CheckEolTargetFramework>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)..\..\rulesets\EFCore.noxmldocs.ruleset</CodeAnalysisRuleSet>
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\dotnet-ef\Exe.cs" />
<Compile Include="..\Shared\CodeAnnotations.cs" />
<Compile Include="..\EFCore\Infrastructure\ProductInfo.cs" />
<Compile Include="..\EFCore.Design\Design\IOperationReportHandler.cs" />
<Compile Include="..\EFCore.Design\Design\IOperationResultHandler.cs" />
<Compile Include="..\EFCore.Design\Design\OperationReportHandler.cs" />
<Compile Include="..\EFCore.Design\Design\OperationResultHandler.cs" />
<Compile Include="..\EFCore.Relational\Internal\SemanticVersionComparer.cs" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net461'">
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Configuration" />
</ItemGroup>
<PropertyGroup>
<!-- Permit targeting `netcoreapp2.0`, see https://github.com/dotnet/efcore/issues/34654 -->
<NoWarn>$(NoWarn);NU1903</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Update="Generators\BundleProgramGenerator.tt">
<Generator>TextTemplatingFilePreprocessor</Generator>
<LastGenOutput>BundleProgramGenerator.cs</LastGenOutput>
</None>
<None Update="Generators\BundleProjectGenerator.tt">
<Generator>TextTemplatingFilePreprocessor</Generator>
<LastGenOutput>BundleProjectGenerator.cs</LastGenOutput>
</None>
<None Update="Properties\Resources.Designer.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="Generators\BundleProgramGenerator.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>BundleProgramGenerator.tt</DependentUpon>
</Compile>
<Compile Update="Generators\BundleProjectGenerator.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>BundleProjectGenerator.tt</DependentUpon>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.Designer.tt</DependentUpon>
</Compile>
</ItemGroup>
<Target Name="BuildOtherPlatforms" AfterTargets="Build" Condition=" '$(TargetFramework)' == 'net461' And '$(Platform)' == 'AnyCPU' ">
<MSBuild Projects="$(MSBuildProjectFullPath)" Properties="TargetFramework=$(TargetFramework);Platform=x86;Configuration=$(Configuration)" Targets="Build" />
<MSBuild Projects="$(MSBuildProjectFullPath)" Properties="TargetFramework=$(TargetFramework);Platform=ARM64;Configuration=$(Configuration)" Targets="Build" />
</Target>
</Project>