-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathBuildScriptGenerator.csproj
More file actions
94 lines (83 loc) · 4.24 KB
/
BuildScriptGenerator.csproj
File metadata and controls
94 lines (83 loc) · 4.24 KB
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
91
92
93
94
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>Microsoft.Oryx.BuildScriptGenerator</AssemblyName>
<RootNamespace>Microsoft.Oryx.BuildScriptGenerator</RootNamespace>
<SelfContained>true</SelfContained>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\build\FinalPublicKey.snk</AssemblyOriginatorKeyFile>
<DelaySign>true</DelaySign>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AssemblyVersion>0.2</AssemblyVersion>
<LangVersion>8.0</LangVersion>
<!-- Remove when proper XML documentation is added to the project. -->
<DisableDocRequirement>true</DisableDocRequirement>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)\..\CommonFiles\AssemblyVersion.proj" />
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0" />
<PackageReference Include="Nett" Version="0.15.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Scriban.Signed" Version="5.5.2" />
<PackageReference Include="SemanticVersioning" Version="2.0.2" />
<PackageReference Include="System.CodeDom" Version="7.0.0" />
<PackageReference Include="YamlDotNet" Version="12.3.1" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\Labels.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Labels.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Labels.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Labels.Designer.cs</LastGenOutput>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Content Remove="BaseBashBuildScript.sh.tpl" />
<Content Remove="Dockerfile.oryx.tpl" />
<Content Remove="Node\NodeBashBuildSnippet.sh.tpl" />
<Content Remove="Php\PhpBashBuildSnippet.sh.tpl" />
<Content Remove="Golang\GolangBashBuildSnippet.sh.tpl" />
<Content Remove="Python\PythonBashBuildSnippet.sh.tpl" />
<Content Remove="DotNetCore\DotNetCoreBashBuildSnippet.sh.tpl" />
<Content Remove="Hugo\HugoBashBuildSnippet.sh.tpl" />
<Content Remove="Ruby\RubyBashBuildSnippet.sh.tpl" />
</ItemGroup>
<ItemGroup>
<None Remove="Java\JavaBashBuildSnippet.sh.tpl" />
<None Remove="Python\JupyterNotebookBashBuildSnippet.sh.tpl" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="BaseBashBuildScript.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Dockerfile.oryx.tpl" WithCulture="false" />
<EmbeddedResource Include="DotNetCore\DotNetCoreBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Java\JavaBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Node\NodeBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Hugo\HugoBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Php\PhpBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Golang\GolangBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Python\JupyterNotebookBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Python\PythonBashBuildSnippet.sh.tpl" WithCulture="false" />
<EmbeddedResource Include="Ruby\RubyBashBuildSnippet.sh.tpl" WithCulture="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BuildScriptGenerator.Common\BuildScriptGenerator.Common.csproj" />
<ProjectReference Include="..\Detector\Detector.csproj" />
</ItemGroup>
</Project>