mirror of
https://github.com/sharkdp/bat.git
synced 2025-09-01 10:52:24 +01:00
Map various .NET file extensions to XML syntax
This commit is contained in:
5
tests/syntax-tests/source/XML/Directory.Build.props
vendored
Normal file
5
tests/syntax-tests/source/XML/Directory.Build.props
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<OutDir>C:\output\$(MSBuildProjectName)</OutDir>
|
||||
</PropertyGroup>
|
||||
</Project>
|
11
tests/syntax-tests/source/XML/console.csproj
vendored
Normal file
11
tests/syntax-tests/source/XML/console.csproj
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<RootNamespace>SomeNamespace</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
8
tests/syntax-tests/source/XML/projectname.targets
vendored
Normal file
8
tests/syntax-tests/source/XML/projectname.targets
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<Target Name="TestTarget" AfterTargets="Build">
|
||||
<Message Importance="High" Text="-------------MHM----------------" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
Reference in New Issue
Block a user