generated from brianary/PSModuleTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDetextive.csproj
24 lines (19 loc) · 846 Bytes
/
Detextive.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageVersion>1.0</PackageVersion>
<PackageId>Detextive</PackageId>
<Title>PowerShell binary module</Title>
<Authors>Brian Lalonde</Authors>
<Description>A template for creating a binary module for PowerShell.</Description>
<PackageTags>dotnet-new;templates;powershell</PackageTags>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
</PropertyGroup>
<ItemGroup>
<Content Include="*;src\**\*;docs\*" Exclude="$(MSBuildProjectName).csproj;.git\**\*;.ionide\**\*;src\**\bin\**;src\**\obj\**" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>