Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Ical.Net/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ private static string GetAssemblyVersion()
version = assembly.GetName().Version?.ToString();
}

return version ?? "1.0.0.0";
return version ?? "2.0";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see below regarding "2.0"

}
}

Expand Down
2 changes: 1 addition & 1 deletion Ical.Net/Ical.Net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyOriginatorKeyFile>..\IcalNetStrongnameKey.snk</AssemblyOriginatorKeyFile>
<nullable>enable</nullable>
<LangVersion>latest</LangVersion>
<FileVersion>2.0</FileVersion>
<AssemblyVersion>2.0</AssemblyVersion>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All version attributes get set during publishing with the CI workflow.
Mixing up 2.0 with the iCalendar version defined in RFC 5545 Section 3.7.4?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Understood. Anyway obsolete see comment above.

</PropertyGroup>
<ItemGroup>
<PackageReference Include="NodaTime" Version="3.2.2" />
Expand Down
Loading