Skip to content

Commit

Permalink
Cleanup PropertyGroup elements in project files
Browse files Browse the repository at this point in the history
GitOrigin-RevId: be17d071edcb357dc940da538570cf2c0342c490
  • Loading branch information
mfilippov authored and seclerp committed Jul 17, 2024
1 parent 07ce676 commit a55afa6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<Import Project="Sdk.props" Sdk="JetBrains.Toolset.MainSolution.Sdk" Version="20200625.1.1.2" Condition="$(InternalBuild)" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" Condition="!$(InternalBuild)" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyName>Rider.Plugins.EfCore.Tests</AssemblyName>
<IsPackable>false</IsPackable>
<PackageLockFilePath>$(MSBuildThisFileDirectory)PackagesLock.targets</PackageLockFilePath>
<TargetFramework>net472</TargetFramework>
</PropertyGroup>
<ItemGroup Label="ProjectReference">
<ProjectReference Include="..\Rider.Plugins.EfCore\Rider.Plugins.EfCore.csproj" />
Expand Down
14 changes: 6 additions & 8 deletions src/dotnet/Rider.Plugins.EfCore/Rider.Plugins.EfCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,16 @@
<InternalBuild Condition="$(InternalBuild) == ''">False</InternalBuild>
</PropertyGroup>
<PropertyGroup>
<LanguageTargets>$(MSBuildToolsPath)\Microsoft.CSharp.targets</LanguageTargets>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="JetBrains.Toolset.MainSolution.Sdk" Version="20200625.1.1.2" Condition="$(InternalBuild)" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" Condition="!$(InternalBuild)" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<AssemblyName>Rider.Plugins.EfCore</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
<IsPackable>false</IsPackable>
<DefineConstants>$(DefineConstants);RIDER</DefineConstants>
<IsPackable>false</IsPackable>
<LanguageTargets>$(MSBuildToolsPath)\Microsoft.CSharp.targets</LanguageTargets>
<PackageLockFilePath>$(MSBuildThisFileDirectory)PackagesLock.targets</PackageLockFilePath>
<RootNamespace>$(AssemblyName)</RootNamespace>
<TargetFramework>net472</TargetFramework>
</PropertyGroup>
<Import Project="Sdk.props" Sdk="JetBrains.Toolset.MainSolution.Sdk" Version="20200625.1.1.2" Condition="$(InternalBuild)" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" Condition="!$(InternalBuild)" />
<ItemGroup Label="PackageReference">
<PackageReference Include="JetBrains.Lifetimes" />
<PackageReference Include="JetBrains.NuGet.Packaging" />
Expand Down

0 comments on commit a55afa6

Please sign in to comment.