-
Notifications
You must be signed in to change notification settings - Fork 0
/
Searcher.csproj
77 lines (66 loc) · 3.08 KB
/
Searcher.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
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk">
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
<Exec Command="git describe --long --always --dirty=+ --broken --exclude=* --abbrev=40" ConsoleToMSBuild="True" IgnoreExitCode="False">
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput" />
</Exec>
</Target>
<PropertyGroup>
<Version>1.9.0.0</Version>
<InformationalVersion>$(SourceRevisionId)</InformationalVersion>
<OutputType>WinExe</OutputType>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU;x64</Platforms>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Description>Recursively search for files containing text</Description>
</PropertyGroup>
<PropertyGroup>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<AnalysisModeDesign>All</AnalysisModeDesign>
<AnalysisModeSecurity>All</AnalysisModeSecurity>
<AnalysisModePerformance>All</AnalysisModePerformance>
<AnalysisModeReliability>All</AnalysisModeReliability>
<AnalysisModeUsage>All</AnalysisModeUsage>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<NoWarn />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<NoWarn />
</PropertyGroup>
<ItemGroup>
<Compile Remove="TestDocs\**" />
<Compile Remove="TestSearcher\**" />
<EmbeddedResource Remove="TestDocs\**" />
<EmbeddedResource Remove="TestSearcher\**" />
<None Remove="TestDocs\**" />
<None Remove="TestSearcher\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.11.20">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="lookbusy1344.RecordValueAnalyser" Version="1.2.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="DotNet.Glob" Version="3.1.3" />
<PackageReference Include="itext7" Version="8.0.5" />
<PackageReference Include="Roslynator.Analyzers" Version="4.12.9">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>
</Project>