Datei: UnitTestGenerator/CodeGenerator/CodeGenerator.csproj
Last Commit (ab2cdbc)
1 | <?xml version="1. 0" encoding="utf-8"?> |
2 | <Project DefaultTargets="Build" xmlns="http://schemas. microsoft. com/developer/msbuild/2003" ToolsVersion="4. 0"> |
3 | ··<PropertyGroup> |
4 | <Configuration Condition=" '$( Configuration) ' == '' ">Debug</Configuration> |
5 | <Platform Condition=" '$( Platform) ' == '' ">AnyCPU</Platform> |
6 | <ProductVersion>8. 0. 50727</ProductVersion> |
7 | ····<SchemaVersion>2.0</SchemaVersion> |
8 | ····<ProjectGuid>{9BCB091D-EE82-4AD2-8F6E-F83296500C7D}</ProjectGuid> |
9 | ····<OutputType>Library</OutputType> |
10 | ····<AppDesignerFolder>Properties</AppDesignerFolder> |
11 | ····<RootNamespace>CodeGenerator</RootNamespace> |
12 | ····<AssemblyName>CodeGenerator</AssemblyName> |
13 | ····<TargetFrameworkVersion>v2.0</TargetFrameworkVersion> |
14 | ····<FileUpgradeFlags> |
15 | ····</FileUpgradeFlags> |
16 | ····<OldToolsVersion>2.0</OldToolsVersion> |
17 | ····<UpgradeBackupLocation /> |
18 | ··</PropertyGroup> |
19 | ··<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
20 | ····<DebugSymbols>true</DebugSymbols> |
21 | ····<DebugType>full</DebugType> |
22 | ····<Optimize>false</Optimize> |
23 | ····<OutputPath>bin\Debug\</OutputPath> |
24 | ····<DefineConstants>DEBUG;TRACE</DefineConstants> |
25 | ····<ErrorReport>prompt</ErrorReport> |
26 | ····<WarningLevel>4</WarningLevel> |
27 | ··</PropertyGroup> |
28 | <PropertyGroup Condition=" '$( Configuration) |$( Platform) ' == 'Release|AnyCPU' "> |
29 | ····<DebugType>pdbonly</DebugType> |
30 | ····<Optimize>true</Optimize> |
31 | ····<OutputPath>bin\Release\</OutputPath> |
32 | ····<DefineConstants>TRACE</DefineConstants> |
33 | ····<ErrorReport>prompt</ErrorReport> |
34 | ····<WarningLevel>4</WarningLevel> |
35 | ··</PropertyGroup> |
36 | ··<ItemGroup> |
37 | ····<Reference Include="System" /> |
38 | ····<Reference Include="System.Data" /> |
39 | ····<Reference Include="System.Xml" /> |
40 | ··</ItemGroup> |
41 | ··<ItemGroup> |
42 | ····<Compile Include="Class.cs" /> |
43 | ····<Compile Include="CodeElement.cs" /> |
44 | ····<Compile Include="CodeFile.cs" /> |
45 | ····<Compile Include="CSharpCodeProvider.cs" /> |
46 | ····<Compile Include="Field.cs" /> |
47 | ····<Compile Include="Function.cs" /> |
48 | ····<Compile Include="ICodeProvider.cs" /> |
49 | ····<Compile Include="ITextProvider.cs" /> |
50 | ····<Compile Include="NamespaceElement.cs" /> |
51 | ····<Compile Include="NamespaceUsing.cs" /> |
52 | ····<Compile Include="Properties\AssemblyInfo.cs" /> |
53 | ····<Compile Include="Property.cs" /> |
54 | ··</ItemGroup> |
55 | ··<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
56 | ··<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
57 | ······ Other similar extension points exist, see Microsoft.Common.targets. |
58 | ··<Target Name="BeforeBuild"> |
59 | ··</Target> |
60 | ··<Target Name="AfterBuild"> |
61 | ··</Target> |
62 | ··--> |
63 | </Project> |
New Commit (72f6226)
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 | </Project> |
10 |