Skip to content

Commit 0fc668c

Browse files
committed
Update project settings
1 parent 2850df2 commit 0fc668c

File tree

7 files changed

+39
-23
lines changed

7 files changed

+39
-23
lines changed

LICENSE renamed to LICENSE.md

File renamed without changes.

X.Web.UTM.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
44
VisualStudioVersion = 15.0.27004.2008
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{5B9BA258-2A81-4F93-808A-80F0823F7EDB}"
7+
ProjectSection(SolutionItems) = preProject
8+
src\Directory.Build.props = src\Directory.Build.props
9+
EndProjectSection
710
EndProject
811
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{4E157A7F-77D1-43D9-B7D2-88E846AB091F}"
912
EndProject

src/Directory.Build.props

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<Project>
2+
3+
<PropertyGroup>
4+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
5+
6+
<PackageReadmeFile>README.md</PackageReadmeFile>
7+
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
8+
9+
<Authors>Andrew Gubskiy</Authors>
10+
<Copyright>Andrew Gubskiy © 2024</Copyright>
11+
<Company>Ukrainian .NET Developer Community</Company>
12+
13+
<Version>1.0.5</Version>
14+
<AssemblyVersion>1.0.5</AssemblyVersion>
15+
<FileVersion>1.0.5</FileVersion>
16+
<PackageVersion>1.0.5</PackageVersion>
17+
18+
<RepositoryType>git</RepositoryType>
19+
<RepositoryUrl>https://github.com/ernado-x/X.Web.UTM.git</RepositoryUrl>
20+
<PackageProjectUrl>https://andrew.gubskiy.com/open-source</PackageProjectUrl>
21+
22+
<Nullable>enable</Nullable>
23+
</PropertyGroup>
24+
25+
</Project>

src/X.Web.UTM/UTMBuilder.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System;
12
using JetBrains.Annotations;
23

34
namespace X.Web.UTM;

src/X.Web.UTM/UTMParser.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using System;
12
using System.Web;
23

34
namespace X.Web.UTM;

src/X.Web.UTM/X.Web.UTM.csproj

Lines changed: 9 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<PackageReadmeFile>README.md</PackageReadmeFile>
5-
<PackageIcon>icon.png</PackageIcon>
6-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
7-
<Authors>Copyright Andrew Gubskiy © 2024</Authors>
8-
<Company>Ukrainian .NET Developer Community</Company>
9-
<PackageLicenseUrl>https://github.com/ernado-x/X.Web.UTM/blob/master/LICENSE</PackageLicenseUrl>
10-
<PackageProjectUrl>https://github.com/ernado-x/X.Web.UTM</PackageProjectUrl>
11-
<PackageIconUrl>https://ru.gravatar.com/userimage/8071071/f2dc08ee7e4016451f64a7ae9cffd110.png?size=200</PackageIconUrl>
12-
<RepositoryType>git</RepositoryType>
13-
<Version>1.0.1</Version>
14-
<AssemblyVersion>1.0.1</AssemblyVersion>
15-
<FileVersion>1.0.1</FileVersion>
16-
<RepositoryType>git</RepositoryType>
17-
<RepositoryUrl>https://github.com/ernado-x/X.Web.UTM.git</RepositoryUrl>
4+
<Title>X.Web.UTM</Title>
185
<Description>X.Web.UTM is a versatile .NET library designed for efficiently handling Urchin Tracking Module (UTM) parameters</Description>
6+
197
<LangVersion>default</LangVersion>
20-
<PackageVersion>1.0.1</PackageVersion>
218
<TargetFrameworks>net6.0;net8.0;netstandard2.0;netstandard2.1</TargetFrameworks>
22-
<!-- <TargetFrameworks>net8.0</TargetFrameworks>-->
23-
<ImplicitUsings>enable</ImplicitUsings>
24-
<Nullable>enable</Nullable>
9+
10+
<PackageTags>utm web urchin tracking module</PackageTags>
11+
<PackageIcon>x-web.png</PackageIcon>
2512
</PropertyGroup>
2613

2714
<ItemGroup>
28-
<None Include="icon.png" Pack="True" PackagePath=""/>
15+
<None Include="../../README.md" Pack="true" PackagePath=""/>
16+
<None Include="../../LICENSE.md" Pack="true" PackagePath=""/>
2917
</ItemGroup>
3018

3119
<ItemGroup>
32-
<None Include="../../README.md" Pack="true" PackagePath="\"/>
20+
<None Include="../../x-web.png" Pack="True" PackagePath=""/>
3321
</ItemGroup>
3422

3523
<ItemGroup>
36-
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0">
37-
<PrivateAssets>all</PrivateAssets>
38-
</PackageReference>
24+
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all"/>
3925
</ItemGroup>
4026

4127
</Project>

x-web.png

17 KB
Loading

0 commit comments

Comments
 (0)