-
Notifications
You must be signed in to change notification settings - Fork 0
/
legacynator.csproj
59 lines (49 loc) · 2.47 KB
/
legacynator.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<LangVersion>Preview</LangVersion>
<Nullable>enable</Nullable>
<TargetFramework>net472</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>bin</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="ModuleInitializer.cs" />
<Compile Include="Program.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.ComponentModel.Composition" Version="4.7.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="3.8.0-4.final" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.8.0-4.final" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="3.8.0-4.final" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="3.8.0-4.final" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="3.8.0-4.final" />
<PackageReference Include="Microsoft.Build" Version="16.7.0" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="16.7.0" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.2.6" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="System.Runtime" Version="4.3.1" PrivateAssets="all" />
<PackageReference Include="ThisAssembly" Version="1.0.0-alpha" />
</ItemGroup>
<ItemGroup>
<ProjectProperty Include="MSBuildBinPath" />
<ProjectProperty Include="MSBuildProjectDirectory" />
<ProjectProperty Include="NuGetRestoreTargets" />
<ProjectProperty Include="NuGetTargets" />
</ItemGroup>
<Target Name="ClearMSBuild" AfterTargets="Build">
<ItemGroup>
<MSBuildAssembly Include="$(OutputPath)\Microsoft.Build*.dll" Exclude="$(OutputPath)\Microsoft.Build.Locator.dll" />
</ItemGroup>
<Delete Files="@(MSBuildAssembly)">
<Output TaskParameter="DeletedFiles" ItemName="DeletedFiles" />
</Delete>
<Message Text="Deleted: @(DeletedFiles)" Importance="high" />
</Target>
</Project>