Datei: UnitTestGenerator/TestGenerator/TestGenerator.csproj
Last Commit (72f6226)
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | ··<PropertyGroup> |
| 4 | ····<OutputType>Exe</OutputType> |
| 5 | ····<TargetFramework>net8.0</TargetFramework> |
| 6 | ····<ImplicitUsings>disable</ImplicitUsings> |
| 7 | ····<Nullable>disable</Nullable> |
| 8 | ··</PropertyGroup> |
| 9 | |
| 10 | </Project> |
| 11 |
New Commit (0bec001)
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | ··<PropertyGroup> |
| 4 | ····<OutputType>Exe</OutputType> |
| 5 | ····<TargetFramework>net8.0</TargetFramework> |
| 6 | ····<ImplicitUsings>disable</ImplicitUsings> |
| 7 | ····<Nullable>disable</Nullable> |
| 8 | ··</PropertyGroup> |
| 9 | |
| 10 | ··<ItemGroup> |
| 11 | ····<PackageReference Include="NDO.Mapping" Version="5.0.0" /> |
| 12 | ····<PackageReference Include="NDO.ProviderFactory" Version="5.0.0" /> |
| 13 | ··</ItemGroup> |
| 14 | |
| 15 | ··<ItemGroup> |
| 16 | ····<ProjectReference Include="..\CodeGenerator\CodeGenerator.csproj" /> |
| 17 | ··</ItemGroup> |
| 18 | |
| 19 | </Project> |
| 20 |