Skip to content

Commit d211a08

Browse files
authored
Merge pull request #85 from rainersigwald/fix-task-usings
fix UsingTask declarations so that tasks can be consumed
2 parents ba7244d + fa984be commit d211a08

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Microsoft.NET.Build.Containers/build/Microsoft.NET.Build.Containers.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
</PropertyGroup>
1010

1111
<!--Register our custom task-->
12-
<UsingTask TaskName="$(MSBuildThisFileName).CreateNewImage" AssemblyFile="$(CustomTasksAssembly)"/>
13-
<UsingTask TaskName="$(MSBuildThisFileName).ParseContainerProperties" AssemblyFile="$(CustomTasksAssembly)"/>
12+
<UsingTask TaskName="$(MSBuildThisFileName).Tasks.CreateNewImage" AssemblyFile="$(CustomTasksAssembly)"/>
13+
<UsingTask TaskName="$(MSBuildThisFileName).Tasks.ParseContainerProperties" AssemblyFile="$(CustomTasksAssembly)"/>
1414
</Project>

docs/INTEGRATED-DEMO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dotnet nuget add source https://nuget.pkg.github.com/rainersigwald/index.json \
2020
--store-password-in-clear-text --configfile nuget.config
2121

2222
# add a reference to the package
23-
dotnet add package Microsoft.NET.Build.Containers --version 0.1.3
23+
dotnet add package Microsoft.NET.Build.Containers --prerelease
2424

2525
# publish your project
2626
dotnet publish --os linux --arch x64 -p:PublishProfile=DefaultContainer

0 commit comments

Comments
 (0)