Datei: NDOEnhancer/PersistentEnhancerTestClasses/PersistentEnhancerTestClasses.csproj
Last Commit (cbfe9ed)
1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | |
3 | ··<PropertyGroup> |
4 | <TargetFrameworks>net6. 0;net8. 0;netstandard2. 0;netstandard2. 1</TargetFrameworks> |
5 | ····<ImplicitUsings>disable</ImplicitUsings> |
6 | ····<Nullable>disable</Nullable> |
7 | ··</PropertyGroup> |
8 | |
9 | ··<ItemGroup> |
10 | <ProjectReference Include=". . \. . \NDODLL\NDO. csproj" /> |
11 | ··</ItemGroup> |
12 | |
13 | </Project> |
14 |
New Commit (fb99706)
1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | |
3 | ··<PropertyGroup> |
4 | <TargetFrameworks>net9. 0;net6. 0;net8. 0;netstandard2. 0;netstandard2. 1</TargetFrameworks> |
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\$(TargetFramework)" Command="..\..\..\..\NDOEnhancer\bin\debug\net9.0\NDOEnhancer ..\..\..\$(MSBuildProjectName).ndoproj $(TargetFramework)" /> |
15 | ········<Copy SourceFiles="obj\Debug\$(TargetFramework)\ndotemp\$(MSBuildProjectName).dll" DestinationFolder="bin\Debug\$(TargetFramework)" /> |
16 | ····</Target>···· |
17 | ···· |
18 | </Project> |
19 |