Skip to content

Commit dd15ad2

Browse files
[msbuild] Transpile target should run if @(NESAssembly) files change (#61)
There was previously an incremental build bug: 1. `dotnet run` 2. Modify `chr_generic.s` 3. `dotnet run` Your changes aren't there! You would need to run `dotnet clean` or `dotnet build` to fix it.
1 parent 4f1e956 commit dd15ad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotnes.tasks/Targets/dotnes.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<IncrementalCleanDependsOn>$(IncrementalCleanDependsOn);Transpile</IncrementalCleanDependsOn>
66
</PropertyGroup>
77
<Target Name="Transpile" AfterTargets="Build"
8-
Inputs="$(TargetPath)" Outputs="$(NESTargetPath)">
8+
Inputs="$(TargetPath);@(NESAssembly)" Outputs="$(NESTargetPath)">
99
<TranspileToNES
1010
TargetPath="$(TargetPath)"
1111
AssemblyFiles="@(NESAssembly)"

0 commit comments

Comments
 (0)