mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-04-22 06:02:52 +08:00
12 lines
657 B
XML
12 lines
657 B
XML
<Project>
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="dotnet tool restore" StdOutEncoding="utf-8" />
|
|
<Exec Condition="!Exists('$(SolutionDir)/assets/res/Ln.resx')" WorkingDirectory="$(SolutionDir)/scripts"
|
|
Command="dotnet t4 ./gen.resx.tt -o ../assets/res/Ln.resx"
|
|
StdOutEncoding="utf-8" />
|
|
<Exec Condition="!Exists('$(SolutionDir)/dist/backend/$(ProjectName)/Ln.cs')"
|
|
WorkingDirectory="$(SolutionDir)/scripts"
|
|
Command="dotnet t4 ./gen.cs.tt -o ../dist/backend/$(ProjectName)/Ln.cs"
|
|
StdOutEncoding="utf-8" />
|
|
</Target>
|
|
</Project> |