
All checks were successful
Build / Compute Version (push) Successful in 8s
Build / Build Nuget package (CringeBootstrap.Abstractions) (push) Successful in 4m5s
Build / Build Nuget package (NuGet) (push) Successful in 4m8s
Build / Build Nuget package (SharedCringe) (push) Successful in 4m9s
Build / Build Nuget package (CringePlugins) (push) Successful in 4m30s
Build / Build Launcher (push) Successful in 5m22s
add template for user plugins
14 lines
714 B
XML
14 lines
714 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<!--The folder where the custom task will be present. It points to inside the NuGet package. -->
|
|
<CustomTasksFolder>$(MSBuildThisFileDirectory)..\tasks\netstandard2.0</CustomTasksFolder>
|
|
<!--Reference to the assembly which contains the MSBuild Task-->
|
|
<CustomTasksAssembly>$(CustomTasksFolder)\$(MSBuildThisFileName).dll</CustomTasksAssembly>
|
|
</PropertyGroup>
|
|
|
|
<UsingTask TaskName="$(MSBuildThisFileName).GenerateRunConfig" AssemblyFile="$(CustomTasksAssembly)" />
|
|
|
|
<PropertyGroup>
|
|
<RunConfigPath Condition="'$(RunConfigPath)' == ''">$(ProjectDir)Properties\launchSettings.json</RunConfigPath>
|
|
</PropertyGroup>
|
|
</Project> |