-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
18 lines (18 loc) · 859 Bytes
/
Directory.Build.props
File metadata and controls
18 lines (18 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<Authors>Kerry Jiang</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageTags>Web;Automation;Html;Scraping;Testing;HttpClient;XPath;WebAutomation;FormSubmission;Workflow</PackageTags>
<RepositoryUrl>https://github.com/kerryjiang/NetInteractor.git</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(IncludeReleaseNotes)' == 'true'">
<PackageReadmeFile>v$(PackageVersion).md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="'$(IncludeReleaseNotes)' == 'true'">
<None Include="../../releaseNotes/v$(PackageVersion).md" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
</Project>