-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLabyrinthian.Svg.csproj
48 lines (42 loc) · 1.58 KB
/
Labyrinthian.Svg.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<AppDesignerFolder>3</AppDesignerFolder>
<Title>Labyrinthian.Svg - SVG support for Labyrinthian</Title>
<Description>Labyrinthian.Svg is a dependency-free .NET Standard 2.1 C# library that provides SVG support for Labyrinthian</Description>
<RepositoryUrl>https://github.com/romandykyi/Labyrinthian</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>labyrinthian.svg-logo.png</PackageIcon>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.2.3.0</Version>
<Authors>Roman Dykyi</Authors>
<AssemblyVersion></AssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="..\labyrinthian.svg-logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Labyrinthian\Labyrinthian.csproj" />
<PackageReference Include="Labyrinthian" Version="1.2.5.0" />
</ItemGroup>
</Project>