-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeJam.Light.csproj
More file actions
31 lines (28 loc) · 1.68 KB
/
CodeJam.Light.csproj
File metadata and controls
31 lines (28 loc) · 1.68 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\build\Props\CodeJam.Publish.props" />
<Import Project="..\..\build\Props\CodeJam.Multitargeting.props" />
<Import Project="..\..\build\Targets\Multitargeting.targets" />
<PropertyGroup>
<AssemblyName>CodeJam.Light</AssemblyName>
<RootNamespace>CodeJam</RootNamespace>
<TargetFrameworks>net6.0;net7.0;netcoreapp3.1;netstandard2.1;netstandard2.0;net48;net472;net461;net45;net40;net35</TargetFrameworks>
<PackageId>CodeJam.Light</PackageId>
<Title>CodeJam library (light version)</Title>
<Authors>Andrew Koryavchenko, Igor Sinicyn, Igor Tkachev, rameel, NN</Authors>
<Product>CodeJam</Product>
<Description>CodeJam.Light is a streamlined version of original CodeJam project. It is a set of handy reusable .NET components that can simplify your daily work and save your time when you copy and paste your favorite helper methods and classes from one project to another.</Description>
<PackageProjectUrl>https://github.com/rsdn/CodeJam</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>list string collection data-structure threading xml reflection async assertion IO extension algorithms structures utilities suffix-tree range tagged-union discriminated union discriminated-union variant variant-record disjoint-union sum-type</PackageTags>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\build\C#\**" Link="Properties\%(RecursiveDir)\%(Filename)%(Extension)" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\build\Images\nuget\CodeJam.Main.Icon.png">
<Pack>true</Pack>
<PackagePath>icon.png</PackagePath>
</None>
</ItemGroup>
</Project>