Skip to content

Commit

Permalink
Update readme with daily build update command
Browse files Browse the repository at this point in the history
Bump 8.0 dacpac Nuget
  • Loading branch information
ErikEJ committed Nov 17, 2023
1 parent 18b1e04 commit d177e70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>ErikEJ.EntityFrameworkCore.SqlServer.Dacpac</PackageId>
<PackageVersion>8.0.0-rc.1</PackageVersion>
<PackageVersion>8.0.0</PackageVersion>
<NoWarn>$(NoWarn);EF1001</NoWarn>
<Authors>ErikEJ</Authors>
<Description>Enables reverse engineering an EF Core model from a data-tier application package (DACPAC).</Description>
Expand Down Expand Up @@ -50,7 +50,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0-rc.2.23480.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
<PackageReference Include="Microsoft.SqlServer.DacFx" Version="162.1.167" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
Expand Down
20 changes: 5 additions & 15 deletions src/GUI/efcpt.7/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,23 +108,13 @@ In the example above, Users and Messages tables will be selected.
### Updating the tool

```bash
dotnet tool update ErikEJ.EFCorePowerTools.Cli -g --version 7.0.*-*
dotnet tool update ErikEJ.EFCorePowerTools.Cli -g --version 8.0.*-*
```

[Release notes](https://github.com/ErikEJ/EFCorePowerTools/wiki/Release-notes) - notice the `+CLI` label.

### Integration with Visual Studio Code
### Getting the latest daily build

The tool adds a number of project specific task in a `.vscode/tasks.json` file.

Theses tasks can be run from the command palette in VS Code. Select `Tasks: Run Task` and then select the task you want to run.

The tasks are:

- `EF Core Power Tools: Reverse Engineer` - runs the tool with the current provider and connection string.
- `EF Core Power Tools: Edit Configuration` - opens the configuration file in the editor.
- `EF Core Power Tools: Update` - updates the tool to the latest version.

In addition, when editing the configuration file, you get tooltips, IntelliSense suggestions and validation of the file format.

![Screenshot](https://raw.githubusercontent.com/ErikEJ/EFCorePowerTools/master/img/efcpt-vscode.png)
```bash
dotnet tool update ErikEJ.EFCorePowerTools.Cli -g --version 8.0.*-* --add-source https://ci.appveyor.com/nuget/efcorepowertools
```

0 comments on commit d177e70

Please sign in to comment.