Skip to content

Commit

Permalink
chore: ignore external props
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Jan 8, 2025
1 parent 8a1bbeb commit 902f2c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/MicaSetup.Tools/MakeMica.Cli/Core/CSharpCompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static void Build(MicaConfig config)
Console.OutputEncoding = Encoding.UTF8;

CliResult uninstResult = msbuild
.WithArguments(@".dist\MicaSetup.Uninst.csproj /t:Rebuild /p:Configuration=Release /p:DeployOnBuild=true /p:PublishProfile=FolderProfile /restore")
.WithArguments(@".dist\MicaSetup.Uninst.csproj /t:Rebuild /p:Configuration=Release /p:DeployOnBuild=true /p:PublishProfile=FolderProfile /p:ImportDirectoryBuildProps=false /p:RestoreUseStaticGraphEvaluation=false /restore")
.WithStandardOutputPipe(PipeTarget.ToDelegate(static async (line, token) =>
{
Console.Out.WriteLine(line);
Expand Down
1 change: 1 addition & 0 deletions build/tools_build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ for /f "usebackq tokens=*" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio

echo [build app]
cd ..\src\
dotnet restore
dotnet publish -c Release -p:PublishProfile=FolderProfile
cd /d %~dp0

Expand Down

0 comments on commit 902f2c0

Please sign in to comment.