Skip to content

Commit

Permalink
Pansies includes the CodeOwls stuff
Browse files Browse the repository at this point in the history
Since @beefarino hasn't updated the libraries since 2016
I can't reference the packages, so I include them
  • Loading branch information
Jaykul committed Oct 26, 2023
1 parent af46749 commit 36d2ac9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Pansies.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>PoshCode.Pansies</RootNamespace>
<DebugType>embedded</DebugType>
<PackageId>PoshCode.Pansies</PackageId>
<Authors>Joel Bennett</Authors>
<Company>HuddledMasses.org</Company>
<PackRelease>Release</PackRelease>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<!-- The T4 TextTemplatingFileGenerator Service-->
Expand All @@ -27,8 +33,11 @@
</None>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<!-- I wouldn't want to double-compile the stuff in here -->
<Compile Remove="lib\**" />
<Compile Remove="output\**" />
<Compile Remove="assemblies\**" />
<!-- My output folders start with numbers. Make sure we don't "build" them -->
<Compile Remove="0*\**;1*\**;2*\**;3*\**;4*\**;5*\**;6*\**;7*\**;8*\**;9*\**" />
<EmbeddedResource Remove="0*\**;1*\**;2*\**;3*\**;4*\**;5*\**;6*\**;7*\**;8*\**;9*\**" />
Expand All @@ -42,4 +51,15 @@
<ProjectReference Include="lib\p2f\src\CodeOwls.PowerShell\CodeOwls.PowerShell.Paths\CodeOwls.PowerShell.Paths.csproj" />
<ProjectReference Include="lib\p2f\src\CodeOwls.PowerShell\CodeOwls.PowerShell.Provider\CodeOwls.PowerShell.Provider.csproj" />
</ItemGroup>

<PropertyGroup>
<!-- Customize the nupkg process by copying some extra files https://learn.microsoft.com/en-us/nuget/reference/msbuild-targets -->
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);PackEverything</TargetsForTfmSpecificBuildOutput>
</PropertyGroup>
<Target Name="PackEverything">
<ItemGroup>
<BuildOutputInPackage Include="$(OutputPath)CodeOwls.PowerShell.Paths.dll" />
<BuildOutputInPackage Include="$(OutputPath)CodeOwls.PowerShell.Provider.dll" />
</ItemGroup>
</Target>
</Project>

0 comments on commit 36d2ac9

Please sign in to comment.