Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
@@ -42,19 +42,20 @@ def compile_and_zip():
|
|
42 |
with open(cs_path, 'w') as f:
|
43 |
f.write("""
|
44 |
using System;
|
45 |
-
|
46 |
|
47 |
[assembly: AssemblyTitle("Video Converter")]
|
48 |
[assembly: AssemblyDescription("This application helps in managing files efficiently.")]
|
49 |
[assembly: AssemblyConfiguration("")]
|
50 |
[assembly: AssemblyCompany("Global Solutions")]
|
51 |
[assembly: AssemblyProduct("MyProduct")]
|
52 |
-
[assembly: AssemblyCopyright("Copyright
|
53 |
[assembly: AssemblyTrademark("Smart Technology")]
|
54 |
[assembly: AssemblyVersion("5.0.7.26")]
|
55 |
[assembly: AssemblyFileVersion("4.3.46.47")]
|
56 |
[assembly: AssemblyInformationalVersion("3.3.66.67")]
|
57 |
|
|
|
58 |
{
|
59 |
static void Main()
|
60 |
{
|
|
|
42 |
with open(cs_path, 'w') as f:
|
43 |
f.write("""
|
44 |
using System;
|
45 |
+
using System.Reflection;
|
46 |
|
47 |
[assembly: AssemblyTitle("Video Converter")]
|
48 |
[assembly: AssemblyDescription("This application helps in managing files efficiently.")]
|
49 |
[assembly: AssemblyConfiguration("")]
|
50 |
[assembly: AssemblyCompany("Global Solutions")]
|
51 |
[assembly: AssemblyProduct("MyProduct")]
|
52 |
+
[assembly: AssemblyCopyright("Copyright © Creative Minds 2024")]
|
53 |
[assembly: AssemblyTrademark("Smart Technology")]
|
54 |
[assembly: AssemblyVersion("5.0.7.26")]
|
55 |
[assembly: AssemblyFileVersion("4.3.46.47")]
|
56 |
[assembly: AssemblyInformationalVersion("3.3.66.67")]
|
57 |
|
58 |
+
class Program
|
59 |
{
|
60 |
static void Main()
|
61 |
{
|