Skip to content

Commit

Permalink
Merge pull request #14 from hmlendea/dotnet
Browse files Browse the repository at this point in the history
Upgraded to .NET 7.0
  • Loading branch information
hmlendea committed Nov 1, 2023
2 parents 200f6a0 + d6dea59 commit 52eb898
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
7 changes: 6 additions & 1 deletion .vscode/settings.json
Expand Up @@ -6,7 +6,12 @@
"statusBarItem.remoteBackground": "#175ddc",
"statusBarItem.remoteForeground": "#e7e7e7",
"tab.activeBorder": "#3b7aeb",
"sash.hoverBorder": "#3b7aeb"
"sash.hoverBorder": "#3b7aeb",
"commandCenter.border": "#e7e7e799",
"titleBar.activeBackground": "#175ddc",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#175ddc99",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#175ddc"
}
6 changes: 3 additions & 3 deletions BitwardenVaultManager.csproj
Expand Up @@ -2,15 +2,15 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>BitwardenVaultManager</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NuciCLI" Version="1.4.2" />
<PackageReference Include="NuciCLI.Menus" Version="1.5.1" />
<PackageReference Include="NuciDAL" Version="1.1.1" />
<PackageReference Include="NuciDAL" Version="2.1.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion release.sh
@@ -1,4 +1,4 @@
#!/bin/bash
DOTNET_VERSION="6.0"
DOTNET_VERSION="7.0"
RELEASE_SCRIPT_URL="https://raw.githubusercontent.com/hmlendea/deployment-scripts/master/release/dotnet/${DOTNET_VERSION}.sh"
wget --quiet -O - "${RELEASE_SCRIPT_URL}" | bash /dev/stdin ${@}

0 comments on commit 52eb898

Please sign in to comment.