Merge pull request #18252 from abpframework/issue/remove-json-extension

Remove json extension from abp studio files
pull/18254/head
Yunus Emre Kalkan 1 year ago committed by GitHub
commit 82df88ed0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,8 +29,8 @@
<Pack>true</Pack>
<PackagePath>content\</PackagePath>
</Content>
<None Remove="*.abppkg.json" />
<Content Include="*.abppkg.json">
<None Remove="*.abppkg" />
<Content Include="*.abppkg">
<Pack>true</Pack>
<PackagePath>content\</PackagePath>
</Content>

@ -2,7 +2,7 @@
"template": "empty",
"modules": {
"Volo.Abp": {
"path": "Volo.Abp.abpmdl.json"
"path": "Volo.Abp.abpmdl"
}
}
}

@ -45,7 +45,7 @@ public class RemoveProjectFromSolutionStep : ProjectBuildPipelineStep
private void RemoveProjectFromAbpmdlFile(ProjectBuildContext context)
{
var abpmdlFile = context.FindFile(_solutionFilePath.RemovePostFix(".sln") + ".abpmdl.json");
var abpmdlFile = context.FindFile(_solutionFilePath.RemovePostFix(".sln") + ".abpmdl");
if (abpmdlFile == null)
{

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save