forked from GerHobbelt/gitignore-parser
-
Notifications
You must be signed in to change notification settings - Fork 4
/
GitignoreParserNet.csproj
58 lines (51 loc) · 1.99 KB
/
GitignoreParserNet.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<!-- <TargetFramework>netstandard2.0</TargetFramework> -->
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>13</LangVersion>
<RootNamespace>GitignoreParserNet</RootNamespace>
<Authors>Guiorgy</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Guiorgy/GitignoreParserNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/Guiorgy/GitignoreParserNet</RepositoryUrl>
<Version>0.2.0.14</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>Copyright 2014 codemix ltd.; Copyright (c) 2021 Guiorgy</Copyright>
<Description>A simple yet complete .gitignore parser for .NET.
Supports all features listed in the git-scm gitignore manpage.</Description>
<PackageIcon>Gitignore.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Tests\**" />
<EmbeddedResource Remove="Tests\**" />
<None Remove="Tests\**" />
<None Include="Gitignore.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>