-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
27 lines (23 loc) · 1.1 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Authors>Mohammad Shafie-Zadeh</Authors>
<PackageTags>chain-of-responsibilities</PackageTags>
<VersionPrefix>0.6.0</VersionPrefix>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(SolutionDir)\Release-Notes.txt"))</PackageReleaseNotes>
<PackageIcon>chain_128x128.png</PackageIcon>
<Description>simple and innovative library to implement a chain of responsibilities</Description>
<PackageProjectUrl>https://github.com/litenova/ChainRunner</PackageProjectUrl>
<RepositoryUrl>https://github.com/litenova/ChainRunner</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Nullable>enable</Nullable>
<RootNamespace>ChainRunner</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\assets\logo\chain_128x128.png" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="ChainRunner.UnitTests"/>
</ItemGroup>
</Project>