Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 0 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,6 @@ jobs:
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y tzdata

- name: Set dotnet install dir on Windows
if: runner.os == 'Windows'
run: echo "DOTNET_INSTALL_DIR=D:\dotnet" >> $GITHUB_ENV

- name: Install .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x

- name: Restore
run: dotnet restore --nologo

Expand Down
13 changes: 0 additions & 13 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,6 @@ jobs:
- name: Update tzdata
run: sudo apt-get update && sudo apt-get install -y tzdata

- name: Set dotnet install dir on Windows
if: runner.os == 'Windows'
run: echo "DOTNET_INSTALL_DIR=D:\dotnet" >> $GITHUB_ENV

- name: Install .NET SDKs
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
3.1.x
6.0.x
8.0.x
9.0.x

- name: Restore
run: dotnet restore --nologo

Expand Down
2 changes: 1 addition & 1 deletion src/TimeZoneConverter.Posix/TimeZoneConverter.Posix.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net462;net8.0;net9.0</TargetFrameworks>
<Description>Generates a POSIX time zone string from standard time zone identifiers.</Description>
<Authors>Matt Johnson-Pint</Authors>
<PackageId>TimeZoneConverter.Posix</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion src/TimeZoneConverter/TimeZoneConverter.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net462;net8.0;net9.0</TargetFrameworks>
<Description>Lightweight library to convert quickly between IANA, Windows, and Rails time zone names.</Description>
<Authors>Matt Johnson-Pint</Authors>
<PackageId>TimeZoneConverter</PackageId>
Expand Down
7 changes: 0 additions & 7 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@
</PackageReference>
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="Xunit.SkippableFact" Version="1.5.23" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Verify.Xunit" Version="28.2.1" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'">
<PackageReference Include="Verify.Xunit" Version="31.0.2" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('Windows'))">$(TargetFrameworks);net48</TargetFrameworks>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('Windows'))">$(TargetFrameworks);net48</TargetFrameworks>
</PropertyGroup>

Expand Down