Datei: IntegrationTests/PureBusinessClasses/PureBusinessClasses.csproj
Last Commit (42753b6)
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | ··<PropertyGroup> |
| 4 | ····<TargetFramework>net8.0</TargetFramework> |
| 5 | ······<ImplicitUsings>disable</ImplicitUsings> |
| 6 | ······<Nullable>disable</Nullable> |
| 7 | ··</PropertyGroup> |
| 8 | <ItemGroup> |
| 9 | ··<PackageReference Include="ndo.dll" Version="5.0.0" /> |
| 10 | </ItemGroup> |
| 11 | |
| 12 | <Target Name="nix" AfterTargets="Build"> |
| 13 | ········<Exec WorkingDirectory="bin\Debug\net8.0" Command="..\..\..\..\..\NDOEnhancer\NDOEnhancer\bin\debug\net8.0\NDOEnhancer ..\..\..\PureBusinessClasses.ndoproj $(TargetFramework)" /> |
| 14 | ····</Target> |
| 15 | |
| 16 | </Project> |
| 17 | |
| 18 |
New Commit (1814d4b)
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | ····<PropertyGroup> |
| 4 | ········<TargetFramework>net8.0</TargetFramework> |
| 5 | ········<ImplicitUsings>disable</ImplicitUsings> |
| 6 | ········<Nullable>disable</Nullable> |
| 7 | ····</PropertyGroup> |
| 8 | ···· |
| 9 | ····<ItemGroup> |
| 10 | ········<PackageReference Include="ndo.dll" Version="5.0.0" /> |
| 11 | ····</ItemGroup> |
| 12 | |
| 13 | <Target Name="CustomAfterBuild" AfterTargets="Build" > |
| 14 | ········<Exec WorkingDirectory="bin\Debug\net8.0" Command="..\..\..\..\..\NDOEnhancer\NDOEnhancer\bin\debug\net8.0\NDOEnhancer ..\..\..\PureBusinessClasses.ndoproj $(TargetFramework)" /> |
| 15 | ········<Copy SourceFiles="obj\Debug\net8.0\ndotemp\PureBusinessClasses.dll" DestinationFolder="bin\Debug\net8.0" /> |
| 16 | ····</Target> |
| 17 | |
| 18 | </Project> |
| 19 | |
| 20 |