-
Notifications
You must be signed in to change notification settings - Fork 14
/
Pansies.csproj
69 lines (68 loc) · 3.08 KB
/
Pansies.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<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-->
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
<Compile Update="Source\Assembly\Colors.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Colors.tt</DependentUpon>
</Compile>
<None Update="Source\Assembly\Colors.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>Colors.cs</LastGenOutput>
</None>
<Compile Update="Source\Assembly\ColorSpaces\ColorSpaces.cs">
<DependentUpon>ColorSpaces.tt</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
<None Update="Source\Assembly\ColorSpaces\ColorSpaces.tt">
<LastGenOutput>ColorSpaces.cs</LastGenOutput>
<Generator>TextTemplatingFileGenerator</Generator>
</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*\**" />
<None Remove="0*\**;1*\**;2*\**;3*\**;4*\**;5*\**;6*\**;7*\**;8*\**;9*\**" />
</ItemGroup>
<ItemGroup>
<!-- We are only referencing this for the sake of compiling, never ship it -->
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference
Include="lib\p2f\src\CodeOwls.PowerShell\CodeOwls.PowerShell.Paths\CodeOwls.PowerShell.Paths.csproj"
PrivateAssets="All" />
<ProjectReference
Include="lib\p2f\src\CodeOwls.PowerShell\CodeOwls.PowerShell.Provider\CodeOwls.PowerShell.Provider.csproj"
PrivateAssets="All" />
</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>