Matroska-Solution / Matroska / Matroska.csproj
Code · 35 lines · 1108 bytes
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<Project Sdk="Microsoft.NET.Sdk">

	<PropertyGroup>
		<TargetFrameworks>net10.0</TargetFrameworks>
		<Description>An Ebml based serializer to deserialize a Matroska file (.mkv or .webm)</Description>
		<Nullable>enable</Nullable>
		<WarningsAsErrors>nullable</WarningsAsErrors>
	</PropertyGroup>

	<ItemGroup>
	  <PackageReference Include="Span.ReaderWriter" Version="0.1.1" />
	</ItemGroup>

	<ItemGroup>
		<None Update="MatroskaSpecification.tt">
			<LastGenOutput>MatroskaSpecification.cs</LastGenOutput>
			<Generator>TextTemplatingFileGenerator</Generator>
		</None>
		<None Update="Models\MatroskaModels.tt">
			<Generator>TextTemplatingFileGenerator</Generator>
			<LastGenOutput>MatroskaModels.cs</LastGenOutput>
		</None>
		<Compile Update="MatroskaSpecification.cs">
			<DesignTime>True</DesignTime>
			<AutoGen>True</AutoGen>
			<DependentUpon>MatroskaSpecification.tt</DependentUpon>
		</Compile>
		<Compile Update="Models\MatroskaModels.cs">
			<DesignTime>True</DesignTime>
			<AutoGen>True</AutoGen>
			<DependentUpon>MatroskaModels.tt</DependentUpon>
		</Compile>
	</ItemGroup>

</Project>