Skip to content

Commit 3575b82

Browse files
committed
Fix NU5118 packing issue
The 'File X is not added because the package already contains file X' warnings appeared when two target framework were involved
1 parent a317f0c commit 3575b82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Orm/Xtensive.Orm/Xtensive.Orm.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@
123123

124124
<Target Name="IncludeWeaverFiles">
125125
<ItemGroup>
126-
<TfmSpecificPackageFile Include="$(BaseOutputPath)tools\weaver\**">
126+
<TfmSpecificPackageFile Include="$(BaseOutputPath)tools\weaver\$(TargetFramework)\**">
127127
<Pack>true</Pack>
128-
<PackagePath>tools\weaver\</PackagePath>
128+
<PackagePath>tools\weaver\$(TargetFramework)</PackagePath>
129129
</TfmSpecificPackageFile>
130130
</ItemGroup>
131131
</Target>

0 commit comments

Comments
 (0)