-
-
Notifications
You must be signed in to change notification settings - Fork 756
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed CookieCrumble Package Configurations. (#7998)
- Loading branch information
1 parent
6a6ac98
commit 0038250
Showing
3 changed files
with
40 additions
and
22 deletions.
There are no files selected for viewing
28 changes: 17 additions & 11 deletions
28
src/CookieCrumble/src/CookieCrumble.TUnit/CookieCrumble.TUnit.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="TUnit" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<AssemblyName>CookieCrumble.TUnit</AssemblyName> | ||
<RootNamespace>CookieCrumble.TUnit</RootNamespace> | ||
<IsPackable>true</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="../CookieCrumble/CookieCrumble.csproj" /> | ||
<ProjectReference Include="../CookieCrumble.Analyzers/CookieCrumble.Analyzers.csproj" PrivateAssets="All" ExcludeAssets="compile;runtime" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="TUnit" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- Package the generator in the analyzer directory of the nuget package --> | ||
<None Include="$(OutputPath)\net9.0\CookieCrumble.Analyzers.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="../CookieCrumble/CookieCrumble.csproj" /> | ||
<ProjectReference Include="../CookieCrumble.Analyzers/CookieCrumble.Analyzers.csproj" PrivateAssets="All" ExcludeAssets="compile;runtime" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- Package the generator in the analyzer directory of the nuget package --> | ||
<None Include="$(OutputPath)\net9.0\CookieCrumble.Analyzers.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> | ||
</ItemGroup> | ||
|
||
</Project> |
28 changes: 17 additions & 11 deletions
28
src/CookieCrumble/src/CookieCrumble.Xunit/CookieCrumble.Xunit.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Xunit" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<AssemblyName>CookieCrumble.Xunit</AssemblyName> | ||
<RootNamespace>CookieCrumble.Xunit</RootNamespace> | ||
<IsPackable>true</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="../CookieCrumble/CookieCrumble.csproj" /> | ||
<ProjectReference Include="../CookieCrumble.Analyzers/CookieCrumble.Analyzers.csproj" PrivateAssets="All" ExcludeAssets="compile;runtime" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Xunit" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- Package the generator in the analyzer directory of the nuget package --> | ||
<None Include="$(OutputPath)\net9.0\CookieCrumble.Analyzers.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="../CookieCrumble/CookieCrumble.csproj" /> | ||
<ProjectReference Include="../CookieCrumble.Analyzers/CookieCrumble.Analyzers.csproj" PrivateAssets="All" ExcludeAssets="compile;runtime" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<!-- Package the generator in the analyzer directory of the nuget package --> | ||
<None Include="$(OutputPath)\net9.0\CookieCrumble.Analyzers.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" /> | ||
</ItemGroup> | ||
|
||
</Project> |
6 changes: 6 additions & 0 deletions
6
src/CookieCrumble/src/CookieCrumble.Xunit3/CookieCrumble.Xunit3.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters