-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathBanana.AutoCode.VS2022.csproj
90 lines (88 loc) · 4.1 KB
/
Banana.AutoCode.VS2022.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<!--<PublishSingleFile>true</PublishSingleFile>-->
<SelfContained>true</SelfContained>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_").Replace(".VS2022", ""))</RootNamespace>
<AssemblyName>AutoCode</AssemblyName>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Company>https://github.com/yuanrui</Company>
<Copyright>Copyright © YuanRui 2017</Copyright>
<Product>Banana.AutoCode</Product>
<Title>AutoCode</Title>
<Authors>YuanRui</Authors>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Core\Microsoft.VisualStudio.TextTemplating\**" />
<Compile Remove="Core\Mono.TextTemplating\**" />
<EmbeddedResource Remove="Core\Microsoft.VisualStudio.TextTemplating\**" />
<EmbeddedResource Remove="Core\Mono.TextTemplating\**" />
<None Remove="Core\Microsoft.VisualStudio.TextTemplating\**" />
<None Remove="Core\Mono.TextTemplating\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="app.config" />
<None Remove="Banana.AutoCode.suo" />
<None Remove="packages.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DockPanelSuite" Version="3.1.0" />
<PackageReference Include="DockPanelSuite.ThemeVS2015" Version="3.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
<PackageReference Include="MySqlConnector" Version="2.3.3" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="3.21.120" />
<PackageReference Include="System.CodeDom" Version="8.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
</ItemGroup>
<ItemGroup>
<None Update="Config\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\EasyUI\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\EntityFramework\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\Java\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\Layui\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\MySQL\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\Oracle\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\Samples\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\SqlSugar\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\Test\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\Thrift\*.tt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Templates\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>