-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtility.BaseClasses.csproj
41 lines (37 loc) · 1.67 KB
/
Utility.BaseClasses.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net20;net35;net40;net45;net451;net452;net46;net461;net462;net47;net471;net472;net48;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>Woodward Coding Solutions</Company>
<Authors>Andy Woodward</Authors>
<Description>This .dll contains base classes that can be easily used in multiple projects. It reduces the need to copy class code into new projects and allows for simper updates accross all projects that reference these classes.</Description>
<Copyright>Copyright © Woodward Coding Solutions 2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>Utilities</PackageTags>
<PackageReleaseNotes>Release Notes.md</PackageReleaseNotes>
<PackageId>Utility.BaseClasses</PackageId>
<RepositoryUrl>https://github.com/an-d-uu/Utility.BaseClasses</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Title>Utility.BaseClasses</Title>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.0.2</Version>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DocumentationFile>bin\Release\Utility.BaseClasses.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="Release Notes.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>